Skip to content

Commit

Permalink
Take all testsuites in account
Browse files Browse the repository at this point in the history
  • Loading branch information
netzknecht committed Sep 21, 2023
1 parent 441b705 commit 86612e7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/core/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
<testsuite name="Database">
<directory suffix="Test.php">./tests/Database</directory>
</testsuite>
<testsuite name="Utils">
<directory suffix="Test.php">./tests/Utils</directory>
</testsuite>
</testsuites>
<php>
<env name="DB_CONNECTION" value="testing"/>
Expand Down
12 changes: 9 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,17 @@
</coverage>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">packages/**/tests</directory>
<directory suffix="Test.php">./packages/**/tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./packages/**/tests/Feature</directory>
</testsuite>
<testsuite name="Database">
<directory suffix="Test.php">./packages/**/tests/Database</directory>
</testsuite>
<testsuite name="Utils">
<directory suffix="Test.php">utils/**/tests</directory>
<exclude>utils/scout-database-engine/**</exclude>
<directory suffix="Test.php">packages/**/tests/Utils</directory>
<directory suffix="Test.php">utils/livewire-tables/tests</directory>
</testsuite>
</testsuites>
<php>
Expand Down

0 comments on commit 86612e7

Please sign in to comment.