Skip to content

Commit

Permalink
MNT Run ORM tests in parallel to other tests (#10901)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored Aug 6, 2023
1 parent 9e5411e commit 2a56cc3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ Requires PHPUnit ^9
<testsuite name="Default">
<directory>tests/php</directory>
</testsuite>
<testsuite name="framework">
<!-- Framework ORM tests are split up to run in parallel -->
<testsuite name="framework-core">
<directory>tests/php</directory>
<exclude>
<directory>tests/php/ORM</directory>
</exclude>
</testsuite>
<testsuite name="framework-orm">
<directory>tests/php/ORM</directory>
</testsuite>
<testsuite name="cms">
<directory>vendor/silverstripe/cms/tests</directory>
Expand Down

0 comments on commit 2a56cc3

Please sign in to comment.