Skip to content

Commit

Permalink
Merge branch '0.5' into fix-set-section-to-nullable-on-attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
netzknecht authored Sep 25, 2023
2 parents e9ece93 + f6aba42 commit 7700618
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 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
14 changes: 10 additions & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,22 @@
>
<coverage>
<include>
<directory suffix=".php">src/</directory>
<directory suffix=".php">./packages/**/src</directory>
</include>
</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 7700618

Please sign in to comment.