From 5337dd592b2fdf730fa2a3e3ee9a146f446e3a2b Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 4 Apr 2019 14:04:10 -0700 Subject: [PATCH] remove test case for deprecated pythons on deprecated stack --- test/run | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/test/run b/test/run index 00aaaeb..34f5fa5 100755 --- a/test/run +++ b/test/run @@ -128,11 +128,13 @@ testPython2_fail() { } testPython3_4() { - updateVersion "python3_4" $LATEST_34 - compile "python3_4" - assertCaptured $LATEST_34 - assertNotCaptured "security update" - assertCapturedSuccess + if [[ $STACK != "cedar-14" ]]; then + updateVersion "python3_4" $LATEST_34 + compile "python3_4" + assertCaptured $LATEST_34 + assertNotCaptured "security update" + assertCapturedSuccess + fi } testPython3_4_warn() { @@ -153,11 +155,13 @@ testPython3_4_fail() { } testPython3_5() { - updateVersion "python3_5" $LATEST_35 - compile "python3_5" - assertCaptured $LATEST_35 - assertNotCaptured "security update" - assertCapturedSuccess + if [[ $STACK != "cedar-14" ]]; then + updateVersion "python3_5" $LATEST_35 + compile "python3_5" + assertCaptured $LATEST_35 + assertNotCaptured "security update" + assertCapturedSuccess + fi } testPython3_5_warn() {