Skip to content

Commit

Permalink
Bandage up the CI awaiting fix for #212
Browse files Browse the repository at this point in the history
  • Loading branch information
MTCam authored Feb 4, 2021
2 parents 28e539f + 93c512e commit db0d2e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ jobs:
if [[ ${{ matrix.os }} == "macos-latest" ]]; then
export PYOPENCL_TEST=port:pthread
fi
python -m pytest --durations=10 --tb=native --junitxml=pytest.xml --doctest-modules -rxsw .
# One test at a time to address ballooning memory.
# https://github.com/illinois-ceesd/mirgecom/issues/212
for filename in test_*.py ; do
python -m pytest --durations=10 --tb=native --junitxml=pytest.xml --doctest-modules -rxsw ./"$filename"
done
examples:
name: Examples ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion test/test_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def sym_diffusion(dim, sym_alpha, sym_u):
(get_static_trig_var_diff(2), 50, 5.e-5, [8, 12, 16]),
(get_static_trig_var_diff(3), 50, 5.e-5, [8, 10, 12]),
])
def disable_test_diffusion_accuracy(actx_factory, problem, nsteps, dt, scales, order,
def test_diffusion_accuracy(actx_factory, problem, nsteps, dt, scales, order,
visualize=False):
"""
Checks the accuracy of the diffusion operator by solving the heat equation for a
Expand Down

0 comments on commit db0d2e3

Please sign in to comment.