Skip to content

Commit cc2d1ad

Browse files
authored
Merge branch 'master' into test-pysqlite
2 parents 91a0be9 + b308380 commit cc2d1ad

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
# Master
44

5-
- Test for Pysqlite install
5+
- Sqlite3 Update:
6+
- Add Tests
7+
- Test for Pysqlite
68
- Bug fix: pipenv no longer installs twice on CI
79

810
--------------------------------------------------------------------------------

test/run-versions

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
# shellcheck source=bin/default_pythons
55
source "bin/default_pythons"
66

7+
assertCaptured "Installing SQLite3"
8+
79
testPythonDefault() {
810
updateVersion "pythonDefault" $DEFAULT_PYTHON_VERSION
911
compile "pythonDefault"
1012
assertCaptured $DEFAULT_PYTHON_VERSION
1113
assertNotCaptured "security update"
14+
assertCaptured "Installing SQLite3"
1215
assertCapturedSuccess
1316
}
1417

@@ -18,13 +21,15 @@ testPython2() {
1821
compile "python2"
1922
assertCaptured $LATEST_27
2023
assertNotCaptured "security update"
24+
assertCaptured "Installing SQLite3"
2125
assertCapturedSuccess
2226
}
2327

2428
testPython2_warn() {
2529
compile "python2_warn"
2630
assertCaptured "python-2.7.15"
2731
assertCaptured "security update!"
32+
assertCaptured "Installing SQLite3"
2833
assertCapturedSuccess
2934
}
3035

@@ -67,6 +72,7 @@ testPython3_5() {
6772
compile "python3_5"
6873
assertCaptured $LATEST_35
6974
assertNotCaptured "security update"
75+
assertCaptured "Installing SQLite3"
7076
assertCapturedSuccess
7177
fi
7278
}
@@ -93,13 +99,15 @@ testPython3_6() {
9399
compile "python3_6"
94100
assertCaptured $LATEST_36
95101
assertNotCaptured "security update"
102+
assertCaptured "Installing SQLite3"
96103
assertCapturedSuccess
97104
}
98105

99106
testPython3_6_warn() {
100107
compile "python3_6_warn"
101108
assertCaptured "python-3.6.7"
102109
assertCaptured "security update!"
110+
assertCaptured "Installing SQLite3"
103111
assertCapturedSuccess
104112
}
105113

@@ -117,6 +125,7 @@ testPython3_7() {
117125
else
118126
assertNotCaptured "security update"
119127
assertCaptured $LATEST_37
128+
assertCaptured "Installing SQLite3"
120129
assertCapturedSuccess
121130
fi
122131
}
@@ -128,6 +137,7 @@ testPython3_7_warn() {
128137
else
129138
assertCaptured "python-3.7.1"
130139
assertCaptured "security update!"
140+
assertCaptured "Installing SQLite3"
131141
assertCapturedSuccess
132142
fi
133143
}

0 commit comments

Comments
 (0)