File tree Expand file tree Collapse file tree 4 files changed +22
-17
lines changed Expand file tree Collapse file tree 4 files changed +22
-17
lines changed Original file line number Diff line number Diff line change 35
35
run : composer bin phpunit update --no-interaction --no-progress
36
36
37
37
- name : Execute PHPUnit
38
- run : vendor/bin/phpunit --verbose
38
+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change
1
+ .phpunit.result.cache
1
2
composer.lock
2
3
phpstan.neon
3
4
phpunit.xml
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ psalm-show-info:
23
23
test : phpunit phpstan-analyze psalm-analyze
24
24
25
25
clean :
26
- @rm -rf composer.lock vendor vendor-bin/* /composer.lock vendor-bin/* /vendor
26
+ @rm -rf .phpunit.result.cache composer.lock vendor vendor-bin/* /composer.lock vendor-bin/* /vendor
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
-
3
2
<phpunit backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
- bootstrap =" vendor/autoload.php"
12
- >
3
+ backupStaticAttributes =" false"
4
+ beStrictAboutTestsThatDoNotTestAnything =" true"
5
+ beStrictAboutOutputDuringTests =" true"
6
+ bootstrap =" vendor/autoload.php"
7
+ colors =" true"
8
+ convertErrorsToExceptions =" true"
9
+ convertNoticesToExceptions =" true"
10
+ convertWarningsToExceptions =" true"
11
+ failOnRisky =" true"
12
+ failOnWarning =" true"
13
+ processIsolation =" false"
14
+ stopOnError =" false"
15
+ stopOnFailure =" false"
16
+ verbose =" true"
17
+ >
13
18
<testsuites >
14
- <testsuite name =" php-gitlab-api Test Suite" >
15
- <directory >./test/Gitlab/ </directory >
19
+ <testsuite name =" Test Suite" >
20
+ <directory suffix = " Test.php " >./test</directory >
16
21
</testsuite >
17
22
</testsuites >
18
-
19
23
<filter >
20
- <whitelist >
21
- <directory suffix =" .php" >./lib/Gitlab/ </directory >
24
+ <whitelist processUncoveredFilesFromWhitelist = " true " >
25
+ <directory suffix =" .php" >./lib</directory >
22
26
</whitelist >
23
27
</filter >
24
28
</phpunit >
You can’t perform that action at this time.
0 commit comments