Skip to content

Commit

Permalink
TST: Skip parallel on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Jan 5, 2025
1 parent 9d18b27 commit e704c51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,9 @@ def check_env_matrix(env_build, env_nobuild):
check_env_matrix({'SOME_TEST_VAR': ['1', '2']}, {})


@pytest.mark.skipif(tools.HAS_PYPY, reason="Times out randomly on pypy")
@pytest.mark.skipif(
tools.HAS_PYPY or tools.WIN, reason="Times out randomly on pypy, buggy on windows"
)
def test_parallel(basic_conf_2, dummy_packages):
tmpdir, local, conf, machine_file = basic_conf_2

Expand Down

0 comments on commit e704c51

Please sign in to comment.