File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -147,8 +147,11 @@ jobs:
147
147
- name : Run PHPUnit tests
148
148
run : |
149
149
mkdir -p build/logs/phpunit
150
+
150
151
if [ "$COVERAGE" = '1' ]; then
151
- php -d memory_limit=-1 -d display_startup_errors=on -d display_errors=On -d error_reporting=22527 vendor/bin/simple-phpunit --coverage-clover build/logs/phpunit/clover.xml --log-junit build/logs/phpunit/junit.xml --testdox
152
+ # php -d memory_limit=-1 -d display_startup_errors=on -d display_errors=On -d error_reporting=22527 vendor/bin/simple-phpunit --coverage-clover build/logs/phpunit/clover.xml --log-junit build/logs/phpunit/junit.xml
153
+ vendor/bin/simple-phpunit --warm-coverage-cache --coverage-cache build/logs/phpunit
154
+ vendor/bin/simple-phpunit --log-junit build/logs/phpunit/junit.xml --coverage-cache build/logs/phpunit --coverage-clover build/logs/phpunit/clover.xml
152
155
else
153
156
vendor/bin/simple-phpunit --log-junit build/logs/phpunit/junit.xml
154
157
fi
You can’t perform that action at this time.
0 commit comments