From fa272c6a663727c0c4cd130fe24b209c58630517 Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Fri, 23 Aug 2024 14:59:33 +0800 Subject: [PATCH] test: save to temp file --- pytest/integration/test_pysr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytest/integration/test_pysr.py b/pytest/integration/test_pysr.py index 3f8e3b6c..d71a1470 100644 --- a/pytest/integration/test_pysr.py +++ b/pytest/integration/test_pysr.py @@ -11,6 +11,8 @@ def test_integration_pysr(): unary_operators=["cos"], binary_operators=["*", "+", "-"], early_stop_condition=1e-5, + temp_equation_file=True, + progress=False, ) model.fit(X, y) assert model.equations_.iloc[-1]["loss"] < 1e-5