Skip to content

Commit

Permalink
🚚 Rename test suites and env
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Oct 22, 2023
1 parent f787367 commit f613000
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" bootstrap="vendor/autoload.php" cacheResult="false" colors="true" failOnRisky="true" failOnWarning="true" processIsolation="false" stopOnError="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false" displayDetailsOnIncompleteTests="true" displayDetailsOnSkippedTests="true" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerNotices="true" displayDetailsOnTestsThatTriggerWarnings="true">
<testsuites>
<testsuite name="Skeleton Test Suite">
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
<testsuite name="Skeleton Feature Test Suite">
<testsuite name="Feature Test Suite">
<directory suffix="Test.php">./tests/Feat</directory>
</testsuite>
<testsuite name="Skeleton Unit Test Suite">
<testsuite name="Unit Test Suite">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<coverage/>
<php>
<env name="SKELETON_ENV" value="ci"/>
<env name="LIB_ENV" value="ci"/>
</php>
<source>
<include>
Expand Down

0 comments on commit f613000

Please sign in to comment.