Skip to content

Commit

Permalink
Also xfail on Windows runs, as they seem now to be exhibiting the sam…
Browse files Browse the repository at this point in the history
…e behavior as the mac runs.
  • Loading branch information
jaraco committed Sep 27, 2022
1 parent 2ac730f commit bec108a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_functools.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class TestThrottler:
@pytest.mark.xfail(
os.environ.get('GITHUB_ACTIONS') # type: ignore
and platform.system() == 'Darwin',
reason="Performance is heavily throttled on Github Actions Mac runs",
and platform.system() in ('Darwin', 'Windows'),
reason="Performance is heavily throttled on Github Actions Mac/Windows runs",
)
def test_function_throttled(self):
"""
Expand Down

0 comments on commit bec108a

Please sign in to comment.