Skip to content

Commit

Permalink
prepare for running upstream CI
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Aug 14, 2024
1 parent 03860e7 commit b8dc3e2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/run_examples_short_ci.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

set -o nounset

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$SCRIPT_DIR/run_examples.sh $SCRIPT_DIR/examples wave.py
1 change: 1 addition & 0 deletions test/test_chemistry.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
[PytestPyOpenCLArrayContextFactory])


@pytest.mark.slowtest
@pytest.mark.parametrize(("mechname", "fuel", "rate_tol"),
[("uiuc_7sp", "C2H4", 1e-11),
("sandiego", "H2", 1e-9)])
Expand Down
1 change: 1 addition & 0 deletions test/test_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ def sym_diffusion(dim, sym_kappa, sym_u):
#
# Working hypothesis: RHS lives in lower order polynomial space and thus doesn't
# attain full-order convergence.
@pytest.mark.slowtest
@pytest.mark.parametrize("order", [2, 3])
@pytest.mark.parametrize(("problem", "nsteps", "dt", "scales"),
[
Expand Down
1 change: 1 addition & 0 deletions test/test_multiphysics.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ def get_rhs(t, u):
assert linf_err2 < 1e-9


@pytest.mark.slowtest
@pytest.mark.parametrize("order", [2, 3])
@pytest.mark.parametrize("use_overintegration", [False, True])
def test_thermally_coupled_fluid_wall(
Expand Down

0 comments on commit b8dc3e2

Please sign in to comment.