Skip to content

Commit b054f40

Browse files
Merge pull request #13 from edwinvdpol/feature/pest-configuration
Migrated Pest configuration
2 parents 688df6f + 9a6e835 commit b054f40

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
.DS_Store
44
Thumbs.db
55
composer.lock
6-
.phpunit.result.cache
6+
.phpunit.cache
77
.swp
88
*.map

phpunit.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
colors="true"
6+
cacheDirectory=".phpunit.cache"
67
>
78
<testsuites>
89
<testsuite name="Test Suite">
910
<directory suffix="Test.php">./tests</directory>
1011
</testsuite>
1112
</testsuites>
12-
<coverage processUncoveredFiles="true">
13+
<source>
1314
<include>
1415
<directory suffix=".php">./app</directory>
1516
<directory suffix=".php">./src</directory>
1617
</include>
17-
</coverage>
18+
</source>
1819
</phpunit>

0 commit comments

Comments
 (0)