Skip to content

Commit 4a9d54a

Browse files
committed
Change some configurations
1 parent ae03929 commit 4a9d54a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ before_script:
2323

2424
script:
2525
- mkdir -p build/logs
26-
- phpunit --coverage-clover build/logs/clover.xml --bootstrap tests/bootstrap.php tests
26+
- phpunit -c phpunit.xml.dist
2727

2828
after_script:
29-
- php vendor/bin/coveralls -v
29+
- travis_retry php vendor/bin/coveralls -v

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false">
11+
syntaxCheck="false"
12+
bootstrap="./tests/bootstrap.php">
1213
<php>
1314
<ini name="error_reporting" value="E_ALL" />
1415
</php>
1516

1617
<testsuites>
17-
<testsuite>
18+
<testsuite name="PHP Firebase test suite">
1819
<directory>./tests/</directory>
1920
</testsuite>
2021
</testsuites>
@@ -30,7 +31,6 @@
3031
</exclude>
3132
</whitelist>
3233
</filter>
33-
3434
<logging>
3535
<log type="coverage-clover" target="build/logs/clover.xml"/>
3636
</logging>

0 commit comments

Comments
 (0)