Skip to content

Commit 9ca0c4e

Browse files
committed
check for 3.5 on all stacks
1 parent dc694d4 commit 9ca0c4e

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

test/run-versions

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,17 @@ testPython3_4_fail() {
6161
}
6262

6363
testPython3_5() {
64-
if [[ $STACK != "cedar-14" ]]; then
65-
updateVersion "python3_5" $LATEST_35
66-
compile "python3_5"
67-
assertCaptured $LATEST_35
68-
assertNotCaptured "security update"
69-
assertCaptured "Installing SQLite3"
70-
assertCapturedSuccess
71-
fi
64+
updateVersion "python3_5" $LATEST_35
65+
compile "python3_5"
66+
assertCaptured $LATEST_35
67+
assertNotCaptured "security update"
68+
assertCaptured "Installing SQLite3"
69+
assertCapturedSuccess
7270
}
7371

7472
testPython3_5_warn() {
7573
compile "python3_5_warn"
76-
if [[ $STACK = "cedar-14" ]] ; then
77-
assertCaptured "python-3.5.3"
78-
assertCaptured "security update!"
79-
assertCapturedError
80-
elif [[ -n ${USE_STAGING_BINARIES} ]]; then
74+
if [[ $STACK == "cedar-14" ]] || [[ -n ${USE_STAGING_BINARIES} ]]; then
8175
assertCaptured "python-3.5.3"
8276
assertCaptured "security update!"
8377
assertCapturedSuccess

0 commit comments

Comments
 (0)