Skip to content

Commit

Permalink
Look forward -- XFail the test on older Pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Nov 1, 2023
1 parent 4fe7c39 commit 25bd01c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dandi/cli/tests/test_service_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import os
from pathlib import Path
import re
import sys

import anys
from click.testing import CliRunner
Expand Down Expand Up @@ -48,6 +49,10 @@ def record_only_doi_requests(request):
return None


@pytest.mark.xfail(
sys.version_info < (3, 10),
reason="Some difference in VCR tape: https://github.com/dandi/dandi-cli/pull/1337",
)
@pytest.mark.parametrize(
"doi,name",
[
Expand Down

0 comments on commit 25bd01c

Please sign in to comment.