Skip to content

Commit

Permalink
fixed skip if
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Sep 26, 2023
1 parent 4663fdd commit 1828173
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pydra/utils/tests/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,9 @@ def test_generic_is_subclass3():
assert not TypeParser.is_subclass(ty.List[float], ty.List[int])


@pytest.mark.skipIf(sys.version_info.minor < 9, "Cannot subscript tuple in < Py3.9")
@pytest.mark.skipif(
sys.version_info < (3, 9), reason="Cannot subscript tuple in < Py3.9"
)
def test_generic_is_subclass4():
class MyTuple(tuple):
pass
Expand Down

0 comments on commit 1828173

Please sign in to comment.