We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 619f7a5 commit 09fedb7Copy full SHA for 09fedb7
tests/test_eventloop.py
@@ -56,6 +56,11 @@ def _setup_env():
56
57
windows_skip = pytest.mark.skipif(os.name == "nt", reason="causing failures on windows")
58
59
+# some part of this module seems to hang when run with xvfb
60
+pytestmark = pytest.mark.skipif(
61
+ sys.platform == "linux" and os.getenv("CI"), reason="hangs on linux CI"
62
+)
63
+
64
65
@windows_skip
66
@pytest.mark.skipif(sys.platform == "darwin", reason="hangs on macos")
0 commit comments