Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
a949e43
1
Parent(s):
02376fd
Skip warm start test on Windows
Browse files
pysr/test/test_startup.py
CHANGED
@@ -32,6 +32,9 @@ class TestStartup(unittest.TestCase):
|
|
32 |
|
33 |
def test_warm_start_from_file(self):
|
34 |
"""Test that we can warm start in another process."""
|
|
|
|
|
|
|
35 |
with tempfile.TemporaryDirectory() as tmpdirname:
|
36 |
model = PySRRegressor(
|
37 |
**self.default_test_kwargs,
|
|
|
32 |
|
33 |
def test_warm_start_from_file(self):
|
34 |
"""Test that we can warm start in another process."""
|
35 |
+
if platform.system() == "Windows":
|
36 |
+
self.skipTest("Warm start test incompatible with Windows")
|
37 |
+
|
38 |
with tempfile.TemporaryDirectory() as tmpdirname:
|
39 |
model = PySRRegressor(
|
40 |
**self.default_test_kwargs,
|