mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Fix skipif expression
This commit is contained in:
@@ -9,5 +9,5 @@ import pytest
|
||||
# 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"
|
||||
sys.platform == "darwin" and os.getenv("CI", "0") != "0", reason="Issue #411"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user