Skip to content

Commit

Permalink
Skip cancellation tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Jul 6, 2021
1 parent 929b6dc commit fbcd253
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_cancellation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
from conftest import tractor_test, no_windows


if platform.system() == 'Windows':
pytest.skip(
'Debugger tests have no windows support (yet)',
allow_module_level=True,
)


async def assert_err(delay=0):
await trio.sleep(delay)
assert 0
Expand Down

0 comments on commit fbcd253

Please sign in to comment.