Skip to content

Commit

Permalink
Migrate PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Nov 6, 2023
1 parent 00fb664 commit 2259df4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.result.cache"
stopOnFailure="false"
processIsolation="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd">
<testsuites>
<testsuite name="FeatureHyde">
<directory suffix="Test.php">./packages/hyde/tests</directory>
Expand All @@ -25,13 +25,14 @@
<directory suffix="Test.php">./packages/realtime-compiler/tests</directory>
</testsuite>
</testsuites>
<coverage>
<coverage/>
<php>
<env name="ENV" value="testing"/>
</php>
<source>
<include>
<directory suffix=".php">./packages/framework/src</directory>
<directory suffix=".php">./packages/publications/src</directory>
</include>
</coverage>
<php>
<env name="ENV" value="testing"/>
</php>
</source>
</phpunit>

0 comments on commit 2259df4

Please sign in to comment.