From 1fba2992256acad146ed03e1088f1d9de558fb47 Mon Sep 17 00:00:00 2001 From: Evan Hubinger Date: Sat, 24 Aug 2024 18:22:25 -0700 Subject: [PATCH] Further reduce tests --- coconut/tests/main_test.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/coconut/tests/main_test.py b/coconut/tests/main_test.py index 163cef66..32df6e82 100644 --- a/coconut/tests/main_test.py +++ b/coconut/tests/main_test.py @@ -1108,11 +1108,12 @@ def test_bbopt(self): # if PY38: # run_pyprover() - def test_pyston(self): - with using_paths(pyston): - comp_pyston(["--no-tco"]) - if PYPY and PY2: - run_pyston() + if PY312: # reduce test load + def test_pyston(self): + with using_paths(pyston): + comp_pyston(["--no-tco"]) + if PYPY and PY2: + run_pyston() # -----------------------------------------------------------------------------------------------------------------------