Skip to content

Commit 7ff7fa4

Browse files
committed
add 3.8 tests
1 parent 9a83036 commit 7ff7fa4

File tree

5 files changed

+23
-0
lines changed

5 files changed

+23
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests

test/fixtures/python3_8/runtime.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-3.8.0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flask
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-3.8.99

test/run-versions

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,25 @@ testPython3_7_fail() {
146146
assertCapturedError
147147
}
148148

149+
testPython3_8() {
150+
updateVersion "python3_8" $LATEST_38
151+
compile "python3_8"
152+
if [[ $STACK = "cedar-14" ]]; then
153+
assertCapturedError
154+
else
155+
assertNotCaptured "security update"
156+
assertCaptured $LATEST_38
157+
assertCaptured "Installing SQLite3"
158+
assertCapturedSuccess
159+
fi
160+
}
161+
162+
testPython3_8_fail() {
163+
compile "python3_8_fail"
164+
assertCaptured "Aborting"
165+
assertCapturedError
166+
}
167+
149168
pushd $(dirname 0) >/dev/null
150169
popd >/dev/null
151170

0 commit comments

Comments
 (0)