File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ test latest beta release. Here is a recommended configuration file (``.travis.ym
184
184
185
185
env :
186
186
global :
187
- - TEST_COMMAND="./vendor/bin/simple-phpunit "
187
+ - PHPUNIT_FLAGS="-v "
188
188
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
189
189
190
190
matrix :
@@ -198,7 +198,7 @@ test latest beta release. Here is a recommended configuration file (``.travis.ym
198
198
- php : 7.0
199
199
- php : 7.1
200
200
- php : 7.2
201
- env : COVERAGE=true TEST_COMMAND="./vendor/bin/simple-phpunit --coverage-text"
201
+ env : COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
202
202
203
203
# Test LTS versions. This makes sure we do not use Symfony packages with version greater
204
204
# than 2 or 3 respectively. Read more at https://github.com/symfony/lts
@@ -228,7 +228,7 @@ test latest beta release. Here is a recommended configuration file (``.travis.ym
228
228
229
229
script :
230
230
- composer validate --strict --no-check-lock
231
- - $TEST_COMMAND
231
+ - ./vendor/bin/simple-phpunit $PHPUNIT_FLAGS
232
232
233
233
When configuring travis you should also enable `Travis cron `_ to make sure your
234
234
project is build even if there is no new pull requests or commits.
You can’t perform that action at this time.
0 commit comments