2019-06-12 19:27:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2019-10-27 19:39:24 +00:00
|
|
|
<phpunit bootstrap="tests/php/bootstrap.php"
|
2019-06-12 19:27:23 +00:00
|
|
|
verbose="true"
|
2019-07-17 19:10:14 +00:00
|
|
|
colors="true"
|
2019-06-12 19:27:23 +00:00
|
|
|
timeoutForSmallTests="900"
|
|
|
|
timeoutForMediumTests="900"
|
|
|
|
timeoutForLargeTests="900">
|
2019-07-17 19:10:14 +00:00
|
|
|
<testsuite name='Tasks app integration tests'>
|
2019-10-27 19:39:24 +00:00
|
|
|
<directory>./tests/php/integration</directory>
|
2019-06-12 19:27:23 +00:00
|
|
|
</testsuite>
|
|
|
|
<!-- filters for code coverage -->
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">./</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">./l10n</directory>
|
|
|
|
<directory suffix=".php">./templates</directory>
|
|
|
|
<directory suffix=".php">./tests</directory>
|
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2019-07-17 19:10:14 +00:00
|
|
|
</phpunit>
|