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

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

View File

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