1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- bootstrap =" vendor/autoload.php"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
- syntaxCheck =" false"
12
- >
2
+ <phpunit colors =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true" stopOnError =" false" stopOnFailure =" false" stopOnIncomplete =" false" stopOnSkipped =" false" >
13
3
<testsuites >
14
4
<testsuite name =" Package Test Suite" >
15
5
<directory suffix =" .php" >./tests/</directory >
25
15
</blacklist >
26
16
</filter >
27
17
<logging >
28
- <log type =" coverage-clover" target =" tmp/coverage.xml" />
18
+ <log type =" coverage-clover" target =" / tmp/coverage.xml" />
29
19
<log type =" coverage-text" target =" php://stdout" showUncoveredFiles =" false" />
30
20
</logging >
21
+ <listeners >
22
+ <listener class =" League\PHPUnitCoverageListener\Listener" >
23
+ <arguments >
24
+ <array >
25
+ <element key =" printer" >
26
+ <object class =" League\PHPUnitCoverageListener\Printer\StdOut" />
27
+ </element >
28
+ <element key =" hook" >
29
+ <object class =" League\PHPUnitCoverageListener\Hook\Travis" />
30
+ </element >
31
+ <element key =" namespace" >
32
+ <string >LucaDegasperi\OAuth2Server</string >
33
+ </element >
34
+ <element key =" repo_token" >
35
+ <string >C3CHnRnyaPen5icheG7CYU1O4EDO9aHfu</string >
36
+ </element >
37
+ <element key =" target_url" >
38
+ <string >https://coveralls.io/api/v1/jobs</string >
39
+ </element >
40
+ <element key =" coverage_dir" >
41
+ <string >/tmp</string >
42
+ </element >
43
+ </array >
44
+ </arguments >
45
+ </listener >
46
+ </listeners >
31
47
</phpunit >
0 commit comments