Skip to content

Commit 25bd01c

Browse files
committed
Look forward -- XFail the test on older Pythons
1 parent 4fe7c39 commit 25bd01c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dandi/cli/tests/test_service_scripts.py

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import os
66
from pathlib import Path
77
import re
8+
import sys
89

910
import anys
1011
from click.testing import CliRunner
@@ -48,6 +49,10 @@ def record_only_doi_requests(request):
4849
return None
4950

5051

52+
@pytest.mark.xfail(
53+
sys.version_info < (3, 10),
54+
reason="Some difference in VCR tape: https://github.com/dandi/dandi-cli/pull/1337",
55+
)
5156
@pytest.mark.parametrize(
5257
"doi,name",
5358
[

0 commit comments

Comments
 (0)