Skip to content

Commit 3ee54e8

Browse files
committed
Problem seems to be in Gusto logging. Bit sus...
1 parent 46b5ba0 commit 3ee54e8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
firedrake-clean
206206
cd ./pySDC
207207
coverage run -m pytest --continue-on-collection-errors -v --durations=0 /repositories/pySDC/pySDC/tests -m firedrake
208-
timeout-minutes: 120
208+
timeout-minutes: 45
209209
- name: Make coverage report
210210
run: |
211211
. /home/firedrake/firedrake/bin/activate

pySDC/tests/test_helpers/test_gusto_coupling.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ def tracer_setup(tmpdir='./tmp', degree=1, small_dt=False, comm=None):
2626
COMM_WORLD,
2727
)
2828
from gusto import OutputParameters, Domain, IO
29+
from gusto.core.logging import logger, INFO
2930
from collections import namedtuple
3031

32+
logger.setLevel(INFO)
33+
3134
opts = ('domain', 'tmax', 'io', 'f_init', 'f_end', 'degree', 'uexpr', 'umax', 'radius', 'tol')
3235
TracerSetup = namedtuple('TracerSetup', opts)
3336
TracerSetup.__new__.__defaults__ = (None,) * len(opts)
@@ -785,5 +788,5 @@ def test_pySDC_integrator_MSSDC(n_steps, useMPIController, setup, submit=True):
785788
# test_generic_gusto_problem(setup)
786789
# test_pySDC_integrator_RK(False, RK4, setup)
787790
# test_pySDC_integrator(False, False, setup)
788-
test_pySDC_integrator_with_adaptivity(1e-3, setup)
789-
# test_pySDC_integrator_MSSDC(2, False, setup)
791+
# test_pySDC_integrator_with_adaptivity(1e-3, setup)
792+
test_pySDC_integrator_MSSDC(4, True, setup)

0 commit comments

Comments
 (0)