Skip to content

Commit

Permalink
this exludes the datacite gin extractor tests from running on windows…
Browse files Browse the repository at this point in the history
…, which currently causes a failure on appveyor
  • Loading branch information
jsheunis committed Oct 23, 2023
1 parent 75097bc commit 3f0efdc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion datalad_catalog/extractors/tests/test_datacite_gin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pathlib import Path

import pytest
import sys
import yaml
from datalad.api import meta_extract
from datalad.distribution.dataset import Dataset
Expand Down Expand Up @@ -93,6 +94,9 @@
"""


@pytest.mark.skipif(
sys.platform == "win32", reason="exclude from CI tests on windows"
)
@with_tempfile(mkdir=True)
def test_datacite_extractor(temp_dir_name: str = ""):
dataset_dir = Path(temp_dir_name) / "dataset"
Expand Down

0 comments on commit 3f0efdc

Please sign in to comment.