Skip to content

Commit db54902

Browse files
committed
fix: update phpunit.xml schema for phpunit 12 compatibility
1 parent 183b08a commit db54902

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

phpunit.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php"
3-
colors="true"
4-
verbose="true"
5-
stopOnFailure="false">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.0/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true">
66
<testsuites>
77
<testsuite name="Utopia Agents Test Suite">
88
<directory>tests</directory>
99
</testsuite>
1010
</testsuites>
11-
<coverage>
11+
<source>
1212
<include>
1313
<directory suffix=".php">src/</directory>
1414
</include>
15-
</coverage>
16-
</phpunit>
15+
</source>
16+
</phpunit>

0 commit comments

Comments
 (0)