From 13bca29e1328d90bfec41e34013347fbedd0e65e Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Fri, 24 Aug 2018 18:12:28 -0400 Subject: [PATCH 1/2] update tests to expect success for all 2.7.15 builds --- test/run | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/run b/test/run index a0a1b92..c926882 100755 --- a/test/run +++ b/test/run @@ -81,20 +81,12 @@ testPylibmc() { } testPython2() { - if [[ "$STACK" == "heroku-16" ]] || [[ "$STACK" == "cedar-14" ]]; then compile "python2" assertCaptured "python-2.7.15" assertCapturedSuccess fi } -testNoPython2() { - if [[ "$STACK" == "heroku-18" ]]; then - compile "python2" - assertCapturedError - fi -} - testPython3() { compile "python3" assertCaptured "python-3.6.6" From 61591594a207b1116e2f847dfb64ac7eac227a6a Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Fri, 24 Aug 2018 18:19:07 -0400 Subject: [PATCH 2/2] typo fix --- test/run | 1 - 1 file changed, 1 deletion(-) diff --git a/test/run b/test/run index c926882..5277176 100755 --- a/test/run +++ b/test/run @@ -84,7 +84,6 @@ testPython2() { compile "python2" assertCaptured "python-2.7.15" assertCapturedSuccess - fi } testPython3() {