We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d1085 commit 320009bCopy full SHA for 320009b
tests/integ/modin/hybrid/conftest.py
@@ -7,6 +7,19 @@
7
import modin.pandas as pd
8
from modin.config import context as config_context
9
10
+from tests.utils import IS_WINDOWS
11
+
12
13
+if IS_WINDOWS:
14
+ # Ray startup is extremely flaky on Windows when multiple pytest workers are used.
15
+ # https://snowflakecomputing.atlassian.net/browse/SNOW-2292908
16
+ # https://github.com/modin-project/modin/issues/7387
17
+ @pytest.fixture(scope="module")
18
+ def skip_if_windows():
19
+ pytest.skip(
20
+ reason="skipping tests requiring Ray on Windows", allow_module_level=True
21
+ )
22
23
24
@pytest.fixture(autouse=True, scope="function")
25
def enable_autoswitch():
0 commit comments