We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b9e821 commit 0b554f6Copy full SHA for 0b554f6
test/run
@@ -89,9 +89,13 @@ testPylibmc() {
89
90
testPython2_warn() {
91
compile "python2_warn"
92
- assertCaptured "python-2.7.14"
93
- assertCaptured "security update!"
94
- assertCapturedSuccess
+ if [[ $STACK = "heroku-18" ]]; then
+ assertCapturedError
+ else
95
+ assertCaptured "python-2.7.14"
96
+ assertCaptured "security update!"
97
+ assertCapturedSuccess
98
+ fi
99
}
100
101
testPython2() {
@@ -123,7 +127,8 @@ testPython3_5_warn() {
123
127
compile "python3_5_warn"
124
128
if [[ $STACK = "cedar-14" ]]; then
125
129
assertCaptured "python-3.5.3"
126
130
131
132
else
133
assertCapturedError
134
fi
0 commit comments