Skip to content

Commit

Permalink
skipped windows in tango tests
Browse files Browse the repository at this point in the history
  • Loading branch information
evalott100 committed Jan 14, 2025
1 parent 6560149 commit 0575663
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import asyncio
import os
import platform
import pprint
import subprocess
import sys
Expand Down Expand Up @@ -287,5 +288,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 platform.system() == "Windows":
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 0575663

Please sign in to comment.