File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -59,4 +59,4 @@ script:
59
59
- if [ "$coverage" = "true" ]; then make ci-with-coverage; fi;
60
60
61
61
# # Gather coverage and set it to coverage servers
62
- after_script : make travis -coverage
62
+ after_script : make ci -coverage
Original file line number Diff line number Diff line change @@ -11,10 +11,13 @@ cs: init
11
11
unit : init
12
12
./vendor/bin/phpunit --coverage-text --coverage-html covHtml
13
13
14
- travis-unit : init
14
+ ci : init
15
15
./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
16
16
17
- travis-coverage : init
17
+ ci-with-coverage : init
18
+ ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
19
+
20
+ ci-coverage : init
18
21
if [ -f ./build/logs/clover.xml ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi
19
22
20
23
generate-resources : init
You can’t perform that action at this time.
0 commit comments