Skip to content

Commit

Permalink
slacken suppress_vertical_wind test and update linear_sw_wave KGO
Browse files Browse the repository at this point in the history
  • Loading branch information
ta440 committed Mar 15, 2024
1 parent 301c7ff commit a0f92a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified integration-tests/data/linear_sw_wave_chkpt.h5
Binary file not shown.
6 changes: 3 additions & 3 deletions integration-tests/equations/test_coupled_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ def test_conservative_coupled_transport(tmpdir, m_X_space, tracer_setup):
project_low_method='recover'),
'f2': EmbeddedDGOptions()}
opts = MixedFSOptions(suboptions=suboptions)

Check failure on line 97 in integration-tests/equations/test_coupled_transport.py

View workflow job for this annotation

GitHub Actions / Run linter

W293

integration-tests/equations/test_coupled_transport.py:97:1: W293 blank line contains whitespace
transport_scheme = SSPRK3(domain, options=opts, increment_form=False)

transport_scheme = SSPRK3(domain, increment_form=False)
else:
transport_scheme = SSPRK3(domain, increment_form=False)

transport_method = [DGUpwind(eqn, 'f1'), DGUpwind(eqn, 'f2')]

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/physics/test_suppress_vertical_wind.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ def test_suppress_vertical_wind(tmpdir):
vertical_wind = Function(domain.spaces('theta'))
vertical_wind.interpolate(dot(u, domain.k))

tol = 1e-12
tol = 1e-10
assert norm(vertical_wind) < tol

0 comments on commit a0f92a0

Please sign in to comment.