We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36ba4b commit f1167f3Copy full SHA for f1167f3
.travis.yml
@@ -39,7 +39,7 @@ before_script:
39
script:
40
- composer check-code
41
- if [[ "$COVERAGE" == "1" ]] ; then composer test-cov-live; fi
42
- - if [[ "$COVERAGE" != "1" ]] ; then composer test-live; fi
+ - if [[ "$COVERAGE" != "1" ]] ; then composer test; fi
43
44
after_success:
45
- if [[ "$COVERAGE" == "1" ]]; then composer test-cov-upload; fi
composer.json
@@ -54,7 +54,7 @@
54
"vendor/bin/phpunit --coverage-clover=coverage.xml"
55
],
56
"test-cov-upload": [
57
- "bash <(curl -s https://codecov.io/bash)"
+ "curl -s https://codecov.io/bash | bash"
58
]
59
}
60
0 commit comments