-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
67 lines (64 loc) · 2.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
colors="true"
bootstrap="Tests/bootstrap.php"
convertDeprecationsToExceptions="false"
cacheResultFile="/tmp/phpunit.result.cache"
printerClass="Sempro\PHPUnitPrettyPrinter\PrettyPrinterForPhpUnit9"
>
<php>
<server name="KERNEL_DIR" value="vendor/keboola/syrup/app/"/>
</php>
<testsuites>
<testsuite name="base-tests">
<directory>Tests</directory>
<exclude>Tests/Command</exclude>
<exclude>Tests/Controller</exclude>
<exclude>Tests/Runner</exclude>
<exclude>Tests/RunnerPart2</exclude>
<exclude>Tests/Executor</exclude>
<exclude>Tests/Docker/Container</exclude>
<exclude>Tests/backend-specific-tests</exclude>
</testsuite>
<testsuite name="runner-tests">
<directory>Tests/Runner</directory>
</testsuite>
<testsuite name="runner-tests-2">
<directory>Tests/RunnerPart2</directory>
</testsuite>
<testsuite name="container-tests">
<directory>Tests/Docker/Container</directory>
<file>Tests/Docker/Container/ProcessTest.php</file>
</testsuite>
<testsuite name="s3-tests">
<directory>Tests/backend-specific-tests/S3</directory>
</testsuite>
<testsuite name="abs-tests">
<directory>Tests/backend-specific-tests/ABS</directory>
</testsuite>
<testsuite name="gcs-tests">
<directory>Tests/backend-specific-tests/GCS</directory>
</testsuite>
<testsuite name="synapse-tests">
<directory>Tests/backend-specific-tests/Synapse</directory>
</testsuite>
<testsuite name="exasol-tests">
<directory>Tests/backend-specific-tests/Exasol</directory>
</testsuite>
<testsuite name="redshift-tests">
<directory>Tests/backend-specific-tests/Redshift</directory>
</testsuite>
<testsuite name="teradata-tests">
<directory>Tests/backend-specific-tests/Teradata</directory>
</testsuite>
<testsuite name="bigquery-tests">
<directory>Tests/backend-specific-tests/BigQuery</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>