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 b81cea3 commit a1a675fCopy full SHA for a1a675f
.gitattributes
@@ -6,5 +6,6 @@
6
/.gitignore export-ignore
7
/.travis.yml export-ignore
8
/CHANGELOG.md export-ignore
9
+/coverage.xml export-ignore
10
/phpunit.xml.dist export-ignore
11
/README.md export-ignore
.gitignore
@@ -1,3 +1,4 @@
1
vendor/
2
composer.lock
3
+coverage.xml
4
phpunit.xml
.travis.yml
@@ -13,4 +13,7 @@ install:
13
- travis_retry composer install --no-interaction --prefer-dist
14
15
script:
16
- - vendor/bin/phpunit
+ - vendor/bin/phpunit --coverage-clover=coverage.xml
17
+
18
+after_success:
19
+ - bash <(curl -s https://codecov.io/bash)
0 commit comments