mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-11 17:00:10 +00:00
31 lines
771 B
XML
31 lines
771 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<!-- colors don't work on Windows! -->
|
||
|
<phpunit bootstrap="bootstrap.php"
|
||
|
colors="true"
|
||
|
backupGlobals="false"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
stopOnFailure="false"
|
||
|
timeoutForSmallTests="2"
|
||
|
timeoutForMediumTests="10"
|
||
|
timeoutForLargeTests="60"
|
||
|
strict="true"
|
||
|
verbose="true">
|
||
|
<testsuites>
|
||
|
<testsuite name="extensions">
|
||
|
<!-- assumes extension is installed to mediawiki/extensions/Echo -->
|
||
|
<file>../../../tests/phpunit/suites/ExtensionsTestSuite.php</file>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<groups>
|
||
|
<exclude>
|
||
|
<group>Utility</group>
|
||
|
<group>Broken</group>
|
||
|
<group>ParserFuzz</group>
|
||
|
<group>Stub</group>
|
||
|
</exclude>
|
||
|
</groups>
|
||
|
</phpunit>
|