MNT Run ORM tests in parallel to other tests (#10901)

This commit is contained in:
Guy Sartorelli 2023-08-07 11:57:23 +12:00 committed by GitHub
parent 9e5411e905
commit 2a56cc3ea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -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>