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 244d8c9 commit 9cc76f1Copy full SHA for 9cc76f1
.travis.yml
@@ -27,6 +27,10 @@ before_script:
27
- psql -c "CREATE DATABASE testing;" -U postgres
28
- psql -c "CREATE USER homestead WITH PASSWORD 'secret';" -U postgres
29
30
+script:
31
+ - mkdir -p build/logs
32
+ - php vendor/bin/phpunit -c phpunit.xml
33
+
34
after_success:
35
- travis_retry php vendor/bin/php-coveralls -v
36
phpunit.xml
@@ -10,6 +10,9 @@
10
processIsolation="false"
11
stopOnFailure="true"
12
>
13
+ <logging>
14
+ <log type="coverage-clover" target="build/logs/clover.xml"/>
15
+ </logging>
16
<testsuites>
17
<testsuite name="Feature">
18
<directory suffix="Test.php">./tests/Feature</directory>
0 commit comments