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 32bdb1e commit cb394c6Copy full SHA for cb394c6
tests/conftest.py
@@ -2,7 +2,6 @@
2
3
import os
4
import os.path
5
-import platform
6
import shutil
7
import stat
8
import subprocess
@@ -66,7 +65,9 @@ def pytest_addoption(parser):
66
65
parser.addoption('--only-integration', action='store_true', help='only run the integration tests')
67
68
69
-PYPY3_WIN_VENV_BAD = platform.python_implementation() == 'PyPy' and sys.platform.startswith('win')
+PYPY3_WIN_VENV_BAD = (
+ sys.implementation.name == 'pypy' and sys.implementation.version < (7, 3, 9) and sys.platform.startswith('win')
70
+)
71
PYPY3_WIN_M = 'https://foss.heptapod.net/pypy/pypy/-/issues/3323 and https://foss.heptapod.net/pypy/pypy/-/issues/3321'
72
73
0 commit comments