Skip to content

Commit c93d2a6

Browse files
committed
Skip --no-pep517 test on Python 3.8 as pip will expect wheel to be installed, but it isn't
1 parent 2ab2c19 commit c93d2a6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/unit/create/test_creator.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,10 @@ def test_create_long_path(tmp_path):
398398
subprocess.check_call([str(result.creator.script("pip")), "--version"])
399399

400400

401+
@pytest.mark.skipif(
402+
sys.version_info[:2] == (3, 8),
403+
reason="Disable on Python 3.8, which still uses pip 25.0.1 (without https://github.com/pypa/pip/pull/13330)",
404+
)
401405
@pytest.mark.slow
402406
@pytest.mark.parametrize("creator", sorted(set(PythonInfo.current_system().creators().key_to_class) - {"builtin"}))
403407
@pytest.mark.usefixtures("session_app_data")

0 commit comments

Comments
 (0)