From 54803885e7474279968a5856deecfe892cd0dd02 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen <pauli.t.virtanen@jyu.fi> Date: Wed, 21 Sep 2022 13:39:25 +0300 Subject: [PATCH] tests: fixup --- tests/test_basic.py | 22 +++++++++++++--------- tests/test_solver.py | 2 +- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/tests/test_basic.py b/tests/test_basic.py index 2a7d4a8..cf7cffa 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -86,18 +86,22 @@ def test_result_S_J0(omega, h, terminals): @pytest.mark.parametrize( - "use_numdifftools", + "omega,use_numdifftools", [ - False, - pytest.param( - True, - marks=pytest.mark.skipif( - numdifftools is None, reason="numdifftools not installed" + (w, t) + for w in (-0.987, 0.987) + for t in [ + False, + pytest.param( + True, + marks=pytest.mark.skipif( + numdifftools is None, reason="numdifftools not installed" + ), ), - ), + ] ], ) -def test_gauge_invariance(use_numdifftools): +def test_gauge_invariance(omega, use_numdifftools): nx = 10 ny = 7 h = 0.4 @@ -118,7 +122,7 @@ def test_gauge_invariance(use_numdifftools): s.U[:, :, 1, 2:, 2:] = np.random.randn(nx, ny, 2, 2) + 1j * np.random.randn( nx, ny, 2, 2 ) - s.omega = 0.987 + s.omega = omega s.eta = 0.789 s.D = 1.0 s.Lx = 10 diff --git a/tests/test_solver.py b/tests/test_solver.py index f241cea..8f3e943 100644 --- a/tests/test_solver.py +++ b/tests/test_solver.py @@ -243,7 +243,7 @@ def test_selfcons_kupriyanov(request, T): Imax = abs(Is_u).max() assert curve_separation(phis, Is, phis_u, Is_u) < 0.075 * Imax - assert curve_separation(phis, Is, phis_k, Is_k) < 0.1 * Imax + assert curve_separation(phis, Is, phis_k, Is_k) < 0.11 * Imax def curve_separation(x1, y1, x2, y2): -- GitLab