Skip to content

Commit

Permalink
Skip traverse project tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mknorps committed Jan 8, 2024
1 parent a5fb067 commit a5af8be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_sample_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
├── expected.toml (mandatory)
└── ... (regular Python project)
"""
import sys
from dataclasses import dataclass
from pathlib import Path
from typing import Iterator, List, Optional
Expand Down Expand Up @@ -106,6 +107,7 @@ def collect(cls) -> Iterator["SampleProject"]:
yield cls(path=subdir, **cls._init_args_from_toml(toml_data, Experiment))


@pytest.mark.skipif(sys.platform.startswith("win"), reason="TODO: fix on Windows #410")
@pytest.mark.parametrize(
"project, experiment",
[
Expand Down
2 changes: 2 additions & 0 deletions tests/test_traverse_project.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Test that we can traverse a project to find our inputs."""
import dataclasses
import sys
from pathlib import Path
from typing import Optional, Set, Type

Expand Down Expand Up @@ -455,6 +456,7 @@ class TraverseProjectVector:
]


@pytest.mark.skipif(sys.platform.startswith("win"), reason="TODO: fix on Windows #410")
@pytest.mark.parametrize(
"vector", [pytest.param(v, id=v.id) for v in find_sources_vectors]
)
Expand Down

0 comments on commit a5af8be

Please sign in to comment.