Commit 4b70f14 1 parent 4398be4 commit 4b70f14 Copy full SHA for 4b70f14
File tree 3 files changed +17
-14
lines changed
3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 63
63
- name : Install Winter CMS
64
64
run : |
65
65
wget https://github.com/wintercms/winter/archive/${{ matrix.winterRelease }}.zip
66
- unzip ${{ matrix.winterReleaseDir }}.zip
67
- rm ${{ matrix.winterReleaseDir }}.zip
66
+ unzip ${{ matrix.winterRelease }}.zip
67
+ rm ${{ matrix.winterRelease }}.zip
68
68
shopt -s dotglob
69
69
mv winter-${{ matrix.winterReleaseDir }}/* ./
70
70
rmdir winter-${{ matrix.winterReleaseDir }}
Original file line number Diff line number Diff line change 1
1
composer.lock
2
2
vendor
3
3
.DS_Store
4
+ .phpunit.result.cache
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit
2
+ <phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
4
backupGlobals =" false"
4
5
backupStaticAttributes =" false"
5
6
colors =" true"
8
9
convertWarningsToExceptions =" true"
9
10
processIsolation =" false"
10
11
stopOnFailure =" false"
12
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
11
13
>
12
14
<testsuites >
13
- <testsuite name =" winter.user " >
15
+ <testsuite name =" Winter.User " >
14
16
<directory >./tests</directory >
15
17
</testsuite >
16
18
</testsuites >
17
- <filter >
18
- <whitelist processUncoveredFilesFromWhitelist = " true " >
19
+ <coverage processUncoveredFiles = " true " >
20
+ <include >
19
21
<directory suffix =" .php" >./classes</directory >
20
22
<directory suffix =" .php" >./components</directory >
21
23
<directory suffix =" .php" >./controllers</directory >
22
24
<directory suffix =" .php" >./facades</directory >
23
25
<directory suffix =" .php" >./models</directory >
24
26
<directory suffix =" .php" >./notifyrules</directory >
25
- < exclude >
26
- < file >./Plugin.php</ file >
27
- < directory >./tests</ directory >
28
- <directory >./updates </directory >
29
- <directory >./vendor </directory >
30
- </ exclude >
31
- </whitelist >
32
- </filter >
27
+ </ include >
28
+ < exclude >
29
+ < file >./Plugin.php</ file >
30
+ <directory >./tests </directory >
31
+ <directory >./updates </directory >
32
+ <directory >./vendor</ directory >
33
+ </exclude >
34
+ </coverage >
33
35
</phpunit >
You can’t perform that action at this time.
0 commit comments