This repository was archived by the owner on Jul 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ matrix:
19
19
- php : nightly
20
20
21
21
before_script :
22
+ - (phpenv config-rm xdebug.ini || exit 0)
23
+ - pecl install pcov
22
24
- echo 'Europe/Zurich' | sudo tee /etc/timezone
23
25
- echo 'date.timezone = "Europe/Zurich"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
24
26
- composer self-update -q
Original file line number Diff line number Diff line change 65
65
"test:lint" : " mkdir -p build && find src tests -name '*.php' -print0 | xargs -0 -n1 -P$(nproc) php -l | tee build/phplint.log" ,
66
66
"test:loc" : " mkdir -p build && vendor/bin/phploc src --verbose | tee build/phploc.log" ,
67
67
"test:static-analysis" : " mkdir -p build && bash -c 'vendor/bin/phpstan analyse src --no-progress --level=7 --error-format=junit | tee build/phpstan.junit.xml; if [ ${PIPESTATUS[0]} -ne \" 0\" ]; then exit 1; fi'" ,
68
- "test:unit" : " phpdbg -qrr vendor/bin/phpunit --testsuite=Unit --coverage-text --coverage-clover=build/phpunit/clover.xml --coverage-html=build/phpunit/coverage-html --coverage-xml=build/phpunit/coverage-xml --log-junit=build/phpunit/junit.xml --cache-result-file=build/phpunit/result.cache"
68
+ "test:unit" : " vendor/bin/phpunit --testsuite=Unit --coverage-text --coverage-clover=build/phpunit/clover.xml --coverage-html=build/phpunit/coverage-html --coverage-xml=build/phpunit/coverage-xml --log-junit=build/phpunit/junit.xml --cache-result-file=build/phpunit/result.cache"
69
69
}
70
70
}
You can’t perform that action at this time.
0 commit comments