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 0946d71 commit fa6b75bCopy full SHA for fa6b75b
tests/validators/test_complex.py
@@ -1,6 +1,7 @@
1
import math
2
import platform
3
import re
4
+import sys
5
6
import pytest
7
@@ -84,7 +85,7 @@ def test_complex_strict(input_value, expected):
84
85
86
87
@pytest.mark.xfail(
- platform.python_implementation() == 'PyPy',
88
+ platform.python_implementation() == 'PyPy' and sys.version_info < (3, 10),
89
reason='PyPy cannot process this string due to a bug, even if this string is considered valid in python',
90
)
91
def test_valid_complex_string_with_space():
0 commit comments