8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 441af8b commit a012f6cCopy full SHA for a012f6c
conftest.py
@@ -47,14 +47,7 @@
47
if sys.version_info < (3, 10):
48
collect_ignore_paths.append(CH_03 / 'T_19_match_statement.rst')
49
else:
50
- warnings.warn('Skipping Python 3.10+ tests')
51
-
52
-if (3, 10, 0) > sys.version_info and sys.version_info < \
53
- (3, 10, 0, 'beta', 4):
54
- collect_ignore_paths.append(CH_04 / 'T_08_enum.rst')
55
-else:
56
- warnings.warn(
57
- 'Skipping enum tests that are broken in Python 3.10 < b4')
+ warnings.warn(f'Skipping Python 3.10+ tests on {sys.version}')
58
59
try:
60
import numpy
0 commit comments