Skip to content

Commit 2967de6

Browse files
committed
test: try to skip test_full_workflow_github_archive for Python<3.13
1 parent 3e1fb03 commit 2967de6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_downloaders.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,9 @@ def test_raises_when_clone_with_path(self, tmp_path):
466466
class TestIntegration:
467467
"""Integration tests that test multiple components together."""
468468

469+
@pytest.mark.skipif(
470+
sys.version_info < (3, 13), reason="test broken for python < 3.13?"
471+
)
469472
@pytest.mark.slow
470473
@patch("install_locked_env.downloaders.requests.get")
471474
@patch("install_locked_env.downloaders.zipfile.ZipFile")

0 commit comments

Comments
 (0)