-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
59 lines (52 loc) · 2.43 KB
/
phpunit.xml.dist
File metadata and controls
59 lines (52 loc) · 2.43 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="tests/bootstrap.php"
failOnWarning="false"
>
<testsuites>
<testsuite name="storage">
<directory>tests/functional/Storage</directory>
</testsuite>
<testsuite name="snowflake">
<directory>tests/functional/Snowflake</directory>
<exclude>tests/functional/Snowflake/SnowflakeImportExportBaseTest.php</exclude>
</testsuite>
<testsuite name="snowflake-s3">
<directory>tests/functional/Snowflake</directory>
<exclude>tests/functional/Snowflake/SnowflakeImportExportBaseTest.php</exclude>
</testsuite>
<testsuite name="snowflake-gcs">
<directory>tests/functional/Snowflake</directory>
<exclude>tests/functional/Snowflake/SnowflakeImportExportBaseTest.php</exclude>
<exclude>tests/functional/Snowflake/ExportLegacyTest.php</exclude>
<!--Older test cases with ImporterInterface not supporting GCS-->
<exclude>tests/functional/Snowflake/OtherImportTest.php</exclude>
<exclude>tests/functional/Snowflake/FullImportTest.php</exclude>
<exclude>tests/functional/Snowflake/IncrementalImportTest.php</exclude>
</testsuite>
<testsuite name="snowflake-abs">
<!-- Azure blob storage is slow in CI-->
<!-- run only essentials test which do import or export -->
<!-- abs is slow on CI SNFLK -->
<directory>tests/functional/Snowflake/Exporter</directory>
<directory>tests/functional/Snowflake/ToStage</directory>
<file>tests/functional/Snowflake/ExportLegacyTest.php</file>
<file>tests/functional/Snowflake/OtherImportTest.php</file>
<file>tests/functional/Snowflake/FullImportTest.php</file>
<file>tests/functional/Snowflake/IncrementalImportTest.php</file>
</testsuite>
<testsuite name="tests-bigquery">
<directory>tests/functional/Bigquery</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/unit</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>