Skip to content

Commit 3dff53b

Browse files
committed
update to latest pest
1 parent 1bf702b commit 3dff53b

File tree

2 files changed

+14
-17
lines changed

2 files changed

+14
-17
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ jobs:
4949
composer update --prefer-stable --prefer-dist --no-interaction --with-all-dependencies
5050
5151
- name: Execute tests
52-
run: vendor/bin/pest
52+
run: vendor/bin/pest --ci

phpunit.xml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
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"
5-
backupGlobals="false"
6-
backupStaticAttributes="false"
7-
colors="true"
8-
verbose="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
processIsolation="false"
13-
stopOnFailure="false">
14-
<coverage>
15-
<include>
16-
<directory>src/</directory>
17-
</include>
18-
</coverage>
5+
backupGlobals="false"
6+
colors="true"
7+
processIsolation="false"
8+
stopOnFailure="false"
9+
cacheDirectory=".phpunit.cache"
10+
backupStaticProperties="false">
1911
<testsuites>
2012
<testsuite name="Unit">
21-
<directory>tests/Unit</directory>
13+
<directory>tests/Unit</directory>
2214
</testsuite>
2315
</testsuites>
16+
<source>
17+
<include>
18+
<directory>src/</directory>
19+
</include>
20+
</source>
2421
</phpunit>

0 commit comments

Comments
 (0)