Skip to content

Commit

Permalink
Define default test-suite (#3819)
Browse files Browse the repository at this point in the history
* Define default test-suite

* format
  • Loading branch information
staabm committed May 13, 2023
1 parent 1828db5 commit 3f8cc39
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true" executionOrder="defects" cacheDirectory=".phpunit.cache">
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
executionOrder="defects"
cacheDirectory=".phpunit.cache"
defaultTestSuite="main"
>

<testsuites>
<testsuite name="main">
Expand All @@ -21,7 +29,7 @@
<ini name="memory_limit" value="-1"/>
</php>

<extensions>
<bootstrap class="Ergebnis\PHPUnit\SlowTestDetector\Extension"/>
</extensions>
<extensions>
<bootstrap class="Ergebnis\PHPUnit\SlowTestDetector\Extension"/>
</extensions>
</phpunit>

0 comments on commit 3f8cc39

Please sign in to comment.