Skip to content

Commit

Permalink
test(marimos): mark as xfail on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
nialov committed Jan 15, 2025
1 parent 26a256f commit 2ba3e58
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/marimos/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
)


@pytest.mark.xfail(
sys.platform == "win32",
reason="Subprocess call is flaky in Windows",
raises=subprocess.CalledProcessError,
)
@pytest.mark.parametrize(
"traces_path,area_path,name",
[
Expand Down Expand Up @@ -54,6 +59,11 @@ def test_validation_cli(traces_path: str, area_path: str, name: str):
)


@pytest.mark.xfail(
sys.platform == "win32",
reason="Subprocess call is flaky in Windows",
raises=subprocess.CalledProcessError,
)
@pytest.mark.parametrize(
"args,raises",
[
Expand Down

0 comments on commit 2ba3e58

Please sign in to comment.