add 3.8 tests

This commit is contained in:
Casey Faist
2019-10-17 15:01:32 -07:00
parent 9a830367fe
commit 7ff7fa4462
5 changed files with 23 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
requests
+1
View File
@@ -0,0 +1 @@
python-3.8.0
+1
View File
@@ -0,0 +1 @@
flask
+1
View File
@@ -0,0 +1 @@
python-3.8.99
+19
View File
@@ -146,6 +146,25 @@ testPython3_7_fail() {
assertCapturedError
}
testPython3_8() {
updateVersion "python3_8" $LATEST_38
compile "python3_8"
if [[ $STACK = "cedar-14" ]]; then
assertCapturedError
else
assertNotCaptured "security update"
assertCaptured $LATEST_38
assertCaptured "Installing SQLite3"
assertCapturedSuccess
fi
}
testPython3_8_fail() {
compile "python3_8_fail"
assertCaptured "Aborting"
assertCapturedError
}
pushd $(dirname 0) >/dev/null
popd >/dev/null