From 9cad63f2e6130f1ca34d25d003512495cd1cba31 Mon Sep 17 00:00:00 2001 From: Evan Hubinger Date: Thu, 17 Oct 2024 18:04:09 -0700 Subject: [PATCH] Reduce test load --- coconut/tests/main_test.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/coconut/tests/main_test.py b/coconut/tests/main_test.py index e911da59..79772d22 100644 --- a/coconut/tests/main_test.py +++ b/coconut/tests/main_test.py @@ -1097,12 +1097,6 @@ def test_prelude(self): if MYPY and PY38: run_prelude() - def test_bbopt(self): - with using_paths(bbopt): - comp_bbopt() - if not PYPY and PY38 and not PY310: - install_bbopt() - # def test_pyprover(self): # with using_paths(pyprover): # comp_pyprover() @@ -1110,6 +1104,13 @@ def test_bbopt(self): # run_pyprover() if PY312: # reduce test load + + def test_bbopt(self): + with using_paths(bbopt): + comp_bbopt() + if not PYPY and PY38 and not PY310: + install_bbopt() + def test_pyston(self): with using_paths(pyston): comp_pyston(["--no-tco"])