Skip to content

Commit

Permalink
Migrate phpunit configuration (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
HoldYourWaffle authored Nov 20, 2023
1 parent 1580a98 commit 3589dab
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd">
<coverage/>
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
Expand All @@ -14,4 +10,9 @@
<php>
<env name="DATABASE_URL" value="sqlite:///:memory:"/>
</php>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>

0 comments on commit 3589dab

Please sign in to comment.