@@ -160,49 +160,52 @@ jobs:
160
160
cd e2e/trait-caching
161
161
../../bin/phpstan analyze --no-progress --level 8 --error-format raw data/
162
162
patch -b data/TraitOne.php < TraitOne.patch
163
- OUTPUT=$(../../bin/phpstan analyze --no-progress --level 8 --error-format raw data/ || true )
163
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyze --no-progress --level 8 --error-format raw data/" )
164
164
echo "$OUTPUT"
165
- ../bashunit -a line_count 1 "$OUTPUT"
165
+ ../bashunit -a line_count 2 "$OUTPUT"
166
+ ../bashunit -a matches "Note: Using configuration file .+phpstan.neon." "$OUTPUT"
166
167
../bashunit -a contains 'Method TraitsCachingIssue\TestClassUsingTrait::doBar() should return stdClass but returns Exception.' "$OUTPUT"
167
168
- script : |
168
169
cd e2e/trait-caching
169
170
../../bin/phpstan analyze --no-progress --level 8 --error-format raw data/
170
171
patch -b data/TraitTwo.php < TraitTwo.patch
171
- OUTPUT=$(../../bin/phpstan analyze --no-progress --level 8 --error-format raw data/ || true )
172
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyze --no-progress --level 8 --error-format raw data/" )
172
173
echo "$OUTPUT"
173
- ../bashunit -a line_count 1 "$OUTPUT"
174
+ ../bashunit -a line_count 2 "$OUTPUT"
175
+ ../bashunit -a matches "Note: Using configuration file .+phpstan.neon." "$OUTPUT"
174
176
../bashunit -a contains 'Method class@anonymous/TestClassUsingTrait.php:20::doBar() should return stdClass but returns Exception.' "$OUTPUT"
175
177
- script : |
176
178
cd e2e/trait-caching
177
179
../../bin/phpstan analyze --no-progress --level 8 --error-format raw data/
178
180
patch -b data/TraitOne.php < TraitOne.patch
179
181
patch -b data/TraitTwo.php < TraitTwo.patch
180
- OUTPUT=$(../../bin/phpstan analyze --no-progress --level 8 --error-format raw data/ || true )
182
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyze --no-progress --level 8 --error-format raw data/" )
181
183
echo "$OUTPUT"
182
- ../bashunit -a line_count 2 "$OUTPUT"
184
+ ../bashunit -a line_count 3 "$OUTPUT"
185
+ ../bashunit -a matches "Note: Using configuration file .+phpstan.neon." "$OUTPUT"
183
186
../bashunit -a contains 'Method TraitsCachingIssue\TestClassUsingTrait::doBar() should return stdClass but returns Exception.' "$OUTPUT"
184
187
../bashunit -a contains 'Method class@anonymous/TestClassUsingTrait.php:20::doBar() should return stdClass but returns Exception.' "$OUTPUT"
185
188
- script : |
186
189
cd e2e/bad-exclude-paths
187
- OUTPUT=$(../../bin/phpstan analyse -c ignore.neon 2>&1 || true )
190
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyse -c ignore.neon" )
188
191
echo "$OUTPUT"
189
192
../bashunit -a contains 'Invalid entry in ignoreErrors' "$OUTPUT"
190
193
../bashunit -a contains 'tests is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
191
194
- script : |
192
195
cd e2e/bad-exclude-paths
193
- OUTPUT=$(../../bin/phpstan analyse -c phpneon.php 2>&1 || true )
196
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyse -c phpneon.php" )
194
197
echo "$OUTPUT"
195
198
../bashunit -a contains 'Invalid entry in ignoreErrors' "$OUTPUT"
196
199
../bashunit -a contains 'src/test.php is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
197
200
- script : |
198
201
cd e2e/bad-exclude-paths
199
- OUTPUT=$(../../bin/phpstan analyse -c excludePaths.neon 2>&1 || true )
202
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyse -c excludePaths.neon" )
200
203
echo "$OUTPUT"
201
204
../bashunit -a contains 'Invalid entry in excludePaths' "$OUTPUT"
202
205
../bashunit -a contains 'tests is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
203
206
- script : |
204
207
cd e2e/bad-exclude-paths
205
- OUTPUT=$(../../bin/phpstan analyse -c phpneon2.php 2>&1 || true )
208
+ OUTPUT=$(../bashunit -a exit_code "1" " ../../ bin/phpstan analyse -c phpneon2.php" )
206
209
echo "$OUTPUT"
207
210
../bashunit -a contains 'Invalid entry in excludePaths' "$OUTPUT"
208
211
../bashunit -a contains 'src/test.php is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
0 commit comments