Skip to content

Commit 193c1c7

Browse files
committed
feat: enable all tests in test_elasticity_pde
1 parent e4bc444 commit 193c1c7

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

test/test_stokes.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -749,29 +749,29 @@ def apply_pde_using_calculus_patch(self, cp, potential):
749749
pytest.param(2, "Laplace", 0.5, False),
750750
pytest.param(3, "Laplace", 0.5, False),
751751
pytest.param(3, "Laplace", 0.4, False),
752-
pytest.param(2, "Naive", 0.4, False, marks=pytest.mark.slowtest),
753-
pytest.param(3, "Naive", 0.4, False, marks=pytest.mark.slowtest),
754-
pytest.param(2, "Naive", 0.5, False, marks=pytest.mark.slowtest),
755-
pytest.param(3, "Naive", 0.5, False, marks=pytest.mark.slowtest),
752+
pytest.param(2, "Naive", 0.4, False),
753+
pytest.param(3, "Naive", 0.4, False),
754+
pytest.param(2, "Naive", 0.5, False),
755+
pytest.param(3, "Naive", 0.5, False),
756756
# FIXME: re-enable when merge_int_g_exprs is in
757-
pytest.param(3, "Biharmonic", 0.4, False, marks=pytest.mark.skip),
758-
pytest.param(3, "Biharmonic", 0.5, False, marks=pytest.mark.skip),
757+
pytest.param(3, "Biharmonic", 0.4, False),
758+
pytest.param(3, "Biharmonic", 0.5, False),
759759
# FIXME: re-enable when StokesletWrapperYoshida is implemented for 2D
760760
pytest.param(2, "Laplace", 0.4, False, marks=pytest.mark.xfail),
761761
762762
# Double layer
763763
pytest.param(2, "Laplace", 0.5, True),
764764
pytest.param(3, "Laplace", 0.5, True),
765765
pytest.param(3, "Laplace", 0.4, True),
766-
pytest.param(2, "Naive", 0.4, True, marks=pytest.mark.slowtest),
767-
pytest.param(3, "Naive", 0.4, True, marks=pytest.mark.slowtest),
768-
pytest.param(2, "Naive", 0.5, True, marks=pytest.mark.slowtest),
769-
pytest.param(3, "Naive", 0.5, True, marks=pytest.mark.slowtest),
766+
pytest.param(2, "Naive", 0.4, True),
767+
pytest.param(3, "Naive", 0.4, True),
768+
pytest.param(2, "Naive", 0.5, True),
769+
pytest.param(3, "Naive", 0.5, True),
770770
# FIXME: re-enable when merge_int_g_exprs is in
771-
pytest.param(2, "Biharmonic", 0.4, True, marks=pytest.mark.skip),
772-
pytest.param(2, "Biharmonic", 0.5, True, marks=pytest.mark.skip),
773-
pytest.param(3, "Biharmonic", 0.4, True, marks=pytest.mark.skip),
774-
pytest.param(3, "Biharmonic", 0.5, True, marks=pytest.mark.skip),
771+
pytest.param(2, "Biharmonic", 0.4, True),
772+
pytest.param(2, "Biharmonic", 0.5, True),
773+
pytest.param(3, "Biharmonic", 0.4, True),
774+
pytest.param(3, "Biharmonic", 0.5, True),
775775
# FIXME: re-enable when StressletWrapperYoshida is implemented for 2D
776776
pytest.param(2, "Laplace", 0.4, True, marks=pytest.mark.xfail),
777777
])

0 commit comments

Comments
 (0)