mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
Those tests were removed in 72af2b7c as they took too much time to run.
We are re-enabling them but only for nightly builds !
72 lines
2.0 KiB
XML
72 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
|
bootstrap="unittestautoload.php"
|
|
backupGlobals="true"
|
|
colors="true"
|
|
columns="120"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnRisky="false"
|
|
stopOnSkipped="false"
|
|
verbose="true"
|
|
>
|
|
|
|
<php>
|
|
<ini name="error_reporting" value="E_ALL"/>
|
|
<ini name="display_errors" value="On"/>
|
|
<ini name="log_errors" value="On"/>
|
|
<ini name="html_errors" value="Off"/>
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Application">
|
|
<directory>application</directory>
|
|
</testsuite>
|
|
<testsuite name="Core">
|
|
<directory>core</directory>
|
|
</testsuite>
|
|
<testsuite name="CoreExtensions">
|
|
<directory>coreExtensions</directory>
|
|
</testsuite>
|
|
<testsuite name="Integration">
|
|
<directory>integration</directory>
|
|
</testsuite>
|
|
<testsuite name="Itop-Config">
|
|
<directory>itop-config</directory>
|
|
</testsuite>
|
|
<testsuite name="Itop-Tickets">
|
|
<directory>itop-tickets</directory>
|
|
</testsuite>
|
|
<testsuite name="Setup">
|
|
<directory>setup</directory>
|
|
</testsuite>
|
|
<testsuite name="Status">
|
|
<directory>status</directory>
|
|
</testsuite>
|
|
<testsuite name="Webservices">
|
|
<directory>webservices</directory>
|
|
</testsuite>
|
|
|
|
<testsuite name="Extensions">
|
|
<directory>../env-production/*/test</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<!-- Code coverage white list -->
|
|
<filter>
|
|
<whitelist>
|
|
<file>../core/apc-emulation.php</file>
|
|
<file>../core/ormlinkset.class.inc.php</file>
|
|
<file>../datamodels/2.x/itop-tickets/main.itop-tickets.php</file>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|