Skip to content
Snippets Groups Projects
Commit 31a20e70 authored by patavirt's avatar patavirt
Browse files

Remove some slow test markers

parent 3af3ddf6
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,6 @@ def basic_setup(terminals=False, nx=15, ny=5): ...@@ -31,7 +31,6 @@ def basic_setup(terminals=False, nx=15, ny=5):
# s.solve(omega=150, maxiter=300, preconditioner="none") # s.solve(omega=150, maxiter=300, preconditioner="none")
@pytest.mark.slow
def test_solve_dos(): def test_solve_dos():
s = basic_setup() s = basic_setup()
E = np.linspace(-3, 3, 101) + 0.05j E = np.linspace(-3, 3, 101) + 0.05j
......
...@@ -34,7 +34,6 @@ def example_sns_1d(phi, L, nx=500, ny=1, Delta0=1.0, alpha=0.0): ...@@ -34,7 +34,6 @@ def example_sns_1d(phi, L, nx=500, ny=1, Delta0=1.0, alpha=0.0):
return solver return solver
@pytest.mark.slow
def test_example_sns_1d(): def test_example_sns_1d():
# Test against analytic solution # Test against analytic solution
omega = 30 omega = 30
...@@ -55,7 +54,6 @@ def test_example_sns_1d(): ...@@ -55,7 +54,6 @@ def test_example_sns_1d():
assert_allclose(rF.squeeze(), F, rtol=0, atol=5e-3 * abs(F).max()) 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") @pytest.mark.skipif(usadel1 is None, reason="usadel1 not installed")
def test_example_sns_1d_J_usadel1(): def test_example_sns_1d_J_usadel1():
Lx = 10 Lx = 10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment