From 31a20e703c020afa2a37a04790ec0be63e89561c Mon Sep 17 00:00:00 2001 From: Pauli Virtanen <pauli.t.virtanen@jyu.fi> Date: Mon, 29 Aug 2022 18:04:38 +0300 Subject: [PATCH] Remove some slow test markers --- tests/test_basic.py | 1 - tests/test_solver.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/tests/test_basic.py b/tests/test_basic.py index 3dcc8f7..cc3b01f 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -31,7 +31,6 @@ def basic_setup(terminals=False, nx=15, ny=5): # s.solve(omega=150, maxiter=300, preconditioner="none") -@pytest.mark.slow def test_solve_dos(): s = basic_setup() E = np.linspace(-3, 3, 101) + 0.05j diff --git a/tests/test_solver.py b/tests/test_solver.py index 138d4b5..038509e 100644 --- a/tests/test_solver.py +++ b/tests/test_solver.py @@ -34,7 +34,6 @@ def example_sns_1d(phi, L, nx=500, ny=1, Delta0=1.0, alpha=0.0): return solver -@pytest.mark.slow def test_example_sns_1d(): # Test against analytic solution omega = 30 @@ -55,7 +54,6 @@ def test_example_sns_1d(): assert_allclose(rF.squeeze(), F, rtol=0, atol=5e-3 * abs(F).max()) -@pytest.mark.slow @pytest.mark.skipif(usadel1 is None, reason="usadel1 not installed") def test_example_sns_1d_J_usadel1(): Lx = 10 -- GitLab