Skip to content

Commit

Permalink
MNT Run ORM tests in parallel to other tests (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored Aug 6, 2023
1 parent a8f62aa commit 036f173
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@
<directory>vendor/silverstripe/framework/tests/php</directory>
</testsuite>

<!-- framework only -->
<testsuite name="framework">
<directory>vendor/silverstripe/framework/tests/php/</directory>
<!-- Framework ORM tests are split up to run in parallel -->
<testsuite name="framework-core">
<directory>vendor/silverstripe/framework/tests/php</directory>
<exclude>
<directory>vendor/silverstripe/framework/tests/php/ORM</directory>
</exclude>
</testsuite>
<testsuite name="framework-orm">
<directory>vendor/silverstripe/framework/tests/php/ORM</directory>
</testsuite>

<!-- other core components -->
Expand Down

0 comments on commit 036f173

Please sign in to comment.