Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/phpunit.xml.dist')
-rw-r--r--tests/PHPUnit/phpunit.xml.dist11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/PHPUnit/phpunit.xml.dist b/tests/PHPUnit/phpunit.xml.dist
index a0b0793a91..caf5cf2d16 100644
--- a/tests/PHPUnit/phpunit.xml.dist
+++ b/tests/PHPUnit/phpunit.xml.dist
@@ -28,6 +28,17 @@
<exclude>../../plugins/*/tests/Unit</exclude>
<exclude>../../plugins/*/Test/Unit</exclude>
</testsuite>
+ <testsuite name="SystemTestsCore">
+ <directory>./System</directory>
+ </testsuite>
+ <testsuite name="SystemTestsPlugins">
+ <directory>../../plugins/*/tests</directory><!-- There should be actually a tests/System but this way we make sure to execute all tests even if some are not moved to correct subdirectory. We will execute Unit and Integration tests twice :( ... -->
+ <directory>../../plugins/*/Test</directory>
+ <exclude>../../plugins/*/tests/Integration</exclude>
+ <exclude>../../plugins/*/Test/Integration</exclude>
+ <exclude>../../plugins/*/tests/Unit</exclude>
+ <exclude>../../plugins/*/Test/Unit</exclude>
+ </testsuite>
<testsuite name="IntegrationTests">
<directory>./Integration</directory>
<directory>../../plugins/*/tests/Integration</directory>