From 0fc7b6c186faa662bd4c68f27d7aee39e03d905d Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 17 Oct 2019 16:34:44 -0700 Subject: [PATCH 1/4] bump the warning version to an available version --- test/fixtures/python3_4_warn/runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/python3_4_warn/runtime.txt b/test/fixtures/python3_4_warn/runtime.txt index fe5dcf7..cc8325f 100644 --- a/test/fixtures/python3_4_warn/runtime.txt +++ b/test/fixtures/python3_4_warn/runtime.txt @@ -1 +1 @@ -python-3.4.0 +python-3.4.9 From af1ef93311f4082ddf7e58c8c5cc6a3ea9cd67f8 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 17 Oct 2019 16:35:57 -0700 Subject: [PATCH 2/4] CHANGELOG CHANGELOG CHANGELOG --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2265d6..da779d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,7 @@ # Master - Sqlite3 Update: - - Add Tests - - Test for Pysqlite + - Test improvements - Bug fix: pipenv no longer installs twice on CI - Add support for staging binary testing -------------------------------------------------------------------------------- From 0b804b186c0cff2d3dcf9c3ca02d170737f0fcfc Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Fri, 18 Oct 2019 08:53:40 -0700 Subject: [PATCH 3/4] correct the capture version too --- test/run-versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run-versions b/test/run-versions index 6feb5e1..5c67ac6 100755 --- a/test/run-versions +++ b/test/run-versions @@ -50,7 +50,7 @@ testPython3_4() { testPython3_4_warn() { compile "python3_4_warn" if [[ $STACK = "cedar-14" ]]; then - assertCaptured "python-3.4.0" + assertCaptured "python-3.4.9" assertCaptured "security update!" assertCapturedSuccess else From 011f1e7e606f99c8c1abe41580bba358ed62fd99 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Fri, 18 Oct 2019 09:57:09 -0700 Subject: [PATCH 4/4] wardn case should succeed on all stacks --- test/run-versions | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/test/run-versions b/test/run-versions index 5c67ac6..58c1004 100755 --- a/test/run-versions +++ b/test/run-versions @@ -49,13 +49,9 @@ testPython3_4() { testPython3_4_warn() { compile "python3_4_warn" - if [[ $STACK = "cedar-14" ]]; then - assertCaptured "python-3.4.9" - assertCaptured "security update!" - assertCapturedSuccess - else - assertCapturedError - fi + assertCaptured "python-3.4.9" + assertCaptured "security update!" + assertCapturedSuccess } testPython3_4_fail() {