From 7d743e7998bc83dda178d8e4a1445c61b130b28e Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Mon, 23 Dec 2019 09:57:07 -0500 Subject: [PATCH] Don't test for pypy on cedar 14 --- test/run-versions | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/run-versions b/test/run-versions index ba24d87..06f1c3d 100755 --- a/test/run-versions +++ b/test/run-versions @@ -178,6 +178,9 @@ testPython3_8_fail() { testPypy3_6() { compile "pypy3_6" + if [[ $STACK = "cedar-14" ]]; then + assertCapturedError + else assertCaptured "Installing pypy" assertCaptured "$PYPY_36" assertCapturedSuccess @@ -185,6 +188,9 @@ testPypy3_6() { testPypy2_7() { compile "pypy2_7" + if [[ $STACK = "cedar-14" ]]; then + assertCapturedError + else assertCaptured "Installing pypy" assertCaptured "$PYPY_27" assertCapturedSuccess