4
4
# shellcheck source=bin/default_pythons
5
5
source " bin/default_pythons"
6
6
7
+ assertCaptured " Installing SQLite3"
8
+
7
9
testPythonDefault () {
8
10
updateVersion " pythonDefault" $DEFAULT_PYTHON_VERSION
9
11
compile " pythonDefault"
10
12
assertCaptured $DEFAULT_PYTHON_VERSION
11
13
assertNotCaptured " security update"
14
+ assertCaptured " Installing SQLite3"
12
15
assertCapturedSuccess
13
16
}
14
17
@@ -18,13 +21,15 @@ testPython2() {
18
21
compile " python2"
19
22
assertCaptured $LATEST_27
20
23
assertNotCaptured " security update"
24
+ assertCaptured " Installing SQLite3"
21
25
assertCapturedSuccess
22
26
}
23
27
24
28
testPython2_warn () {
25
29
compile " python2_warn"
26
30
assertCaptured " python-2.7.15"
27
31
assertCaptured " security update!"
32
+ assertCaptured " Installing SQLite3"
28
33
assertCapturedSuccess
29
34
}
30
35
@@ -67,6 +72,7 @@ testPython3_5() {
67
72
compile " python3_5"
68
73
assertCaptured $LATEST_35
69
74
assertNotCaptured " security update"
75
+ assertCaptured " Installing SQLite3"
70
76
assertCapturedSuccess
71
77
fi
72
78
}
@@ -93,13 +99,15 @@ testPython3_6() {
93
99
compile " python3_6"
94
100
assertCaptured $LATEST_36
95
101
assertNotCaptured " security update"
102
+ assertCaptured " Installing SQLite3"
96
103
assertCapturedSuccess
97
104
}
98
105
99
106
testPython3_6_warn () {
100
107
compile " python3_6_warn"
101
108
assertCaptured " python-3.6.7"
102
109
assertCaptured " security update!"
110
+ assertCaptured " Installing SQLite3"
103
111
assertCapturedSuccess
104
112
}
105
113
@@ -117,6 +125,7 @@ testPython3_7() {
117
125
else
118
126
assertNotCaptured " security update"
119
127
assertCaptured $LATEST_37
128
+ assertCaptured " Installing SQLite3"
120
129
assertCapturedSuccess
121
130
fi
122
131
}
@@ -128,6 +137,7 @@ testPython3_7_warn() {
128
137
else
129
138
assertCaptured " python-3.7.1"
130
139
assertCaptured " security update!"
140
+ assertCaptured " Installing SQLite3"
131
141
assertCapturedSuccess
132
142
fi
133
143
}
0 commit comments