From dc694d4712f9439ac46bc210dacaf5f8c1a98be0 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 24 Oct 2019 08:52:33 -0700 Subject: [PATCH] test for 3.5 warn should pass when using staged binaries --- test/run-versions | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/run-versions b/test/run-versions index 2526238..023e418 100755 --- a/test/run-versions +++ b/test/run-versions @@ -73,10 +73,14 @@ testPython3_5() { testPython3_5_warn() { compile "python3_5_warn" - if [[ $STACK = "cedar-14" ]]; then + if [[ $STACK = "cedar-14" ]] ; then assertCaptured "python-3.5.3" assertCaptured "security update!" assertCapturedError + elif [[ -n ${USE_STAGING_BINARIES} ]]; then + assertCaptured "python-3.5.3" + assertCaptured "security update!" + assertCapturedSuccess else assertCapturedError fi