We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06e8d4 commit b7751c2Copy full SHA for b7751c2
.scrutinizer.yml
@@ -0,0 +1,6 @@
1
+imports:
2
+ - php
3
+
4
+tools:
5
+ external_code_coverage:
6
+ timeout: 1200 # Timeout in seconds.
.travis.yml
@@ -23,3 +23,10 @@ services: mongodb
23
before_script:
24
- yes '' | pecl -q install -f mongo-${MONGO_VERSION} && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
25
- composer install --dev
26
27
+script:
28
+ - phpunit --coverage-clover=coverage.clover
29
30
+after_script:
31
+ - wget https://scrutinizer-ci.com/ocular.phar
32
+ - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
0 commit comments