-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
61 lines (61 loc) · 2.69 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
colors="true"
bootstrap="tests/bootstrap.php"
cacheDirectory="/tmp/.phpunit.cache"
>
<coverage/>
<php>
<!-- the value is the FQCN of the application kernel -->
<env name="KERNEL_CLASS" value="App\Kernel"/>
<env name="APP_ENV" value="test" force="true"/>
</php>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
<testsuite name="job-definition">
<directory>tests</directory>
<exclude>tests/Mapping</exclude>
</testsuite>
<testsuite name="mapping-uncategorized">
<directory>tests/Mapping</directory>
<exclude>tests/Mapping/InputDataLoader/ABSInputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/InputDataLoader/BigQueryInputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/InputDataLoader/GCSInputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/InputDataLoader/InputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/InputDataLoader/S3InputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/OutputDataLoader/ABSPersistentOutputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/OutputDataLoader/OutputDataLoaderMetadataTest.php</exclude>
<exclude>tests/Mapping/OutputDataLoader/OutputDataLoaderTest.php</exclude>
<exclude>tests/Mapping/OutputDataLoader/RedshiftPersistentOutputDataLoaderTest.php</exclude>
</testsuite>
<testsuite name="mapping-general">
<file>tests/Mapping/InputDataLoader/InputDataLoaderTest.php</file>
<file>tests/Mapping/OutputDataLoader/OutputDataLoaderTest.php</file>
<file>tests/Mapping/OutputDataLoader/OutputDataLoaderMetadataTest.php</file>
</testsuite>
<testsuite name="mapping-abs">
<file>tests/Mapping/InputDataLoader/ABSInputDataLoaderTest.php</file>
<file>tests/Mapping/OutputDataLoader/ABSPersistentOutputDataLoaderTest.php</file>
</testsuite>
<testsuite name="mapping-bigquery">
<file>tests/Mapping/InputDataLoader/BigQueryInputDataLoaderTest.php</file>
</testsuite>
<testsuite name="mapping-gcs">
<file>tests/Mapping/InputDataLoader/GCSInputDataLoaderTest.php</file>
</testsuite>
<testsuite name="mapping-s3">
<file>tests/Mapping/InputDataLoader/S3InputDataLoaderTest.php</file>
</testsuite>
<testsuite name="mapping-redshift">
<file>tests/Mapping/OutputDataLoader/RedshiftPersistentOutputDataLoaderTest.php</file>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>