We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7013216 commit 55b3706Copy full SHA for 55b3706
tests/test_mpi.py
@@ -2050,7 +2050,7 @@ def test_nontrivial_operator(self, mode):
2050
assert np.all(u.data_ro_domain[1] == 3)
2051
2052
@pytest.mark.parallel(mode=[(4, 'basic'), (4, 'basic2'), (4, 'overlap'), (4, 'full')])
2053
- def test_coupled_eqs_mixed_dims(self):
+ def test_coupled_eqs_mixed_dims(self, mode):
2054
"""
2055
Test an Operator that computes coupled equations over partly disjoint sets
2056
of Dimensions (e.g., one Eq over [x, y, z], the other Eq over [x, yi, zi]).
@@ -2662,7 +2662,7 @@ def run_adjoint_F(self, nd):
2662
@pytest.mark.parametrize('nd', [1, 2, 3])
2663
@pytest.mark.parallel(mode=[(4, 'basic2'), (4, 'diag'), (4, 'overlap'),
2664
(4, 'overlap2'), (4, 'full')])
2665
- def test_adjoint_F(self, nd):
+ def test_adjoint_F(self, nd, mode):
2666
self.run_adjoint_F(nd)
2667
2668
@pytest.mark.parallel(mode=[(8, 'diag2'), (8, 'full')])
0 commit comments