Skip to content

Commit

Permalink
skipped tango tests for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
evalott100 committed Jan 14, 2025
1 parent 6560149 commit f656b5c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,5 +287,11 @@ def pytest_collection_modifyitems(config, items):
reason="Tango is currently not supported on Python 3.12: https://github.com/bluesky/ophyd-async/issues/681"
)
)
elif sys.platform.startswith("win"):
item.add_marker(
pytest.mark.skip(
reason="Tango tests are currently not supported on Windows"
)
)
else:
item.add_marker(pytest.mark.forked)

0 comments on commit f656b5c

Please sign in to comment.