-
Notifications
You must be signed in to change notification settings - Fork 8
/
phpunit.xml.dist
40 lines (40 loc) · 1.62 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
verbose="true">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">test/unit</directory>
<directory suffix="Test.php">lib/commercetools-base/test/unit</directory>
<directory suffix="Test.php">lib/commercetools-api-tests/test/unit</directory>
<directory suffix="Test.php">lib/commercetools-import-tests/test/unit</directory>
<directory suffix="Test.php">lib/commercetools-history-tests/test/unit</directory>
</testsuite>
<testsuite name="base">
<directory suffix="Test.php">lib/commercetools-base/test/unit</directory>
</testsuite>
<testsuite name="api">
<directory suffix="Test.php">lib/commercetools-api-tests/test/unit</directory>
</testsuite>
<testsuite name="import">
<directory suffix="Test.php">lib/commercetools-import-tests/test/unit</directory>
</testsuite>
<testsuite name="history">
<directory suffix="Test.php">lib/commercetools-history-tests/test/unit</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">test/integration</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true"
ignoreDeprecatedCodeUnits="true">
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">lib</directory>
</include>
</coverage>
<php>
<ini name="memory_limit" value="-1"/>
</php>
</phpunit>