mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Skip CI-based MacOS devtools tests
This commit is contained in:
@@ -0,0 +1,13 @@
|
|||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
# TODO - this needs to be revisited - perhaps when aiohttp 4.0 is released?
|
||||||
|
# We get occasional test failures relating to devtools. These *appear* to be limited to MacOS,
|
||||||
|
# and the error messages suggest the event loop is being shutdown before async fixture
|
||||||
|
# teardown code has finished running. These are very rare, but are much more of an issue on
|
||||||
|
# CI since they can delay builds that have passed locally.
|
||||||
|
pytestmark = pytest.mark.skipif(
|
||||||
|
sys.platform == "darwin" and os.getenv("CI"), reason="Issue #411"
|
||||||
|
)
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import os
|
||||||
|
import sys
|
||||||
from datetime import datetime, timezone
|
from datetime import datetime, timezone
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|||||||
Reference in New Issue
Block a user