Skip to content

Commit 5337dd5

Browse files
committed
remove test case for deprecated pythons on deprecated stack
1 parent de8ae80 commit 5337dd5

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

test/run

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,13 @@ testPython2_fail() {
128128
}
129129

130130
testPython3_4() {
131-
updateVersion "python3_4" $LATEST_34
132-
compile "python3_4"
133-
assertCaptured $LATEST_34
134-
assertNotCaptured "security update"
135-
assertCapturedSuccess
131+
if [[ $STACK != "cedar-14" ]]; then
132+
updateVersion "python3_4" $LATEST_34
133+
compile "python3_4"
134+
assertCaptured $LATEST_34
135+
assertNotCaptured "security update"
136+
assertCapturedSuccess
137+
fi
136138
}
137139

138140
testPython3_4_warn() {
@@ -153,11 +155,13 @@ testPython3_4_fail() {
153155
}
154156

155157
testPython3_5() {
156-
updateVersion "python3_5" $LATEST_35
157-
compile "python3_5"
158-
assertCaptured $LATEST_35
159-
assertNotCaptured "security update"
160-
assertCapturedSuccess
158+
if [[ $STACK != "cedar-14" ]]; then
159+
updateVersion "python3_5" $LATEST_35
160+
compile "python3_5"
161+
assertCaptured $LATEST_35
162+
assertNotCaptured "security update"
163+
assertCapturedSuccess
164+
fi
161165
}
162166

163167
testPython3_5_warn() {

0 commit comments

Comments
 (0)