Skip to content

Commit ce11d0b

Browse files
committed
mark the whole passivity_test module as skippable
1 parent 7e47d80 commit ce11d0b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

control/tests/passivity_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
from control.tests.conftest import cvxoptonly
99

1010

11-
@cvxoptonly
11+
pytestmark = cvxoptonly
12+
13+
1214
def test_ispassive():
1315
A = numpy.array([[0, 1], [-2, -2]])
1416
B = numpy.array([[0], [1]])
@@ -33,7 +35,6 @@ def test_ispassive():
3335
D = numpy.array([[1.5]])
3436

3537

36-
@cvxoptonly
3738
@pytest.mark.parametrize(
3839
"test_input,expected",
3940
[((A, B, C, D*0.0), True),

0 commit comments

Comments
 (0)