Skip to content

Commit

Permalink
Reduce test load
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Oct 18, 2024
1 parent 8d57286 commit 9cad63f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions coconut/tests/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,19 +1097,20 @@ 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()
# if PY38:
# 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"])
Expand Down

0 comments on commit 9cad63f

Please sign in to comment.