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 2ab2c19 commit c93d2a6Copy full SHA for c93d2a6
tests/unit/create/test_creator.py
@@ -398,6 +398,10 @@ def test_create_long_path(tmp_path):
398
subprocess.check_call([str(result.creator.script("pip")), "--version"])
399
400
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
+)
405
@pytest.mark.slow
406
@pytest.mark.parametrize("creator", sorted(set(PythonInfo.current_system().creators().key_to_class) - {"builtin"}))
407
@pytest.mark.usefixtures("session_app_data")
0 commit comments