File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ install:
16
16
- composer install --prefer-dist
17
17
18
18
script :
19
- - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
19
+ - composer test:cov
20
20
21
21
after_success :
22
22
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 26
26
"php" : " >=5.4"
27
27
},
28
28
"require-dev" : {
29
- "phpunit/phpunit" : " ^4.8 || ^5.7 || ^6.5"
29
+ "phpunit/phpunit" : " ^6.5 || ^7.5"
30
+ },
31
+ "scripts" : {
32
+ "test" : " phpunit" ,
33
+ "test:cov" : " phpunit --coverage-text --coverage-clover coverage.xml --coverage-html vendor/cov"
30
34
}
31
35
}
Original file line number Diff line number Diff line change 8
8
convertWarningsToExceptions =" true"
9
9
processIsolation =" false"
10
10
stopOnFailure =" false"
11
- syntaxCheck =" false"
12
11
bootstrap =" vendor/autoload.php"
13
12
>
14
13
<testsuites >
You can’t perform that action at this time.
0 commit comments