Skip to content

Commit e362d38

Browse files
committed
Wasn't paying attention, corrected ci commands
1 parent b94f06d commit e362d38

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ script:
5959
- if [ "$coverage" = "true" ]; then make ci-with-coverage; fi;
6060

6161
## Gather coverage and set it to coverage servers
62-
after_script: make travis-coverage
62+
after_script: make ci-coverage

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ cs: init
1111
unit: init
1212
./vendor/bin/phpunit --coverage-text --coverage-html covHtml
1313

14-
travis-unit: init
14+
ci: init
1515
./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
1616

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
1821
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
1922

2023
generate-resources: init

0 commit comments

Comments
 (0)