We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f4594 commit 79f968fCopy full SHA for 79f968f
1 file changed
tests/test_checkers.py
@@ -81,6 +81,9 @@
81
P = ParamSpec("P")
82
83
84
+@pytest.mark.skipif(
85
+ sys.version_info >= (3, 13), reason="AnyStr is deprecated on Python 3.13"
86
+)
87
class TestAnyStr:
88
@pytest.mark.parametrize(
89
"value", [pytest.param("bar", id="str"), pytest.param(b"bar", id="bytes")]
0 commit comments