We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 171df89 + ac9b595 commit d65ce36Copy full SHA for d65ce36
tests/functional/api/test_repository.py
@@ -1,4 +1,5 @@
1
import base64
2
+import sys
3
import tarfile
4
import time
5
import zipfile
@@ -63,6 +64,9 @@ def test_repository_archive(project):
63
64
assert archive == archive2
65
66
67
+# NOTE(jlvillal): Support for using tarfile.is_tarfile() on a file or file-like object
68
+# was added in Python 3.9
69
+@pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9 or higher")
70
@pytest.mark.parametrize(
71
"format,assertion",
72
[
0 commit comments