-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
86 lines (86 loc) · 4.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
printerClass="Sempro\PHPUnitPrettyPrinter\PrettyPrinterForPhpUnit9"
>
<testsuites>
<testsuite name="general-tests">
<directory>tests</directory>
<exclude>tests/Writer/Redshift</exclude>
<exclude>tests/Writer/Workspace</exclude>
<exclude>tests/Writer/TableDefinitionTest.php</exclude>
<exclude>tests/Writer/TableDefinitionV2Test.php</exclude>
<exclude>tests/Writer/StorageApiLocalTableWriterTest.php</exclude>
<exclude>tests/Writer/StorageApiHeadlessWriterTest.php</exclude>
<exclude>tests/Writer/File/Strategy/ABSWorkspaceTest.php</exclude>
<exclude>tests/Writer/Table/Source/AbsWorkspaceItemSourceFactoryTest.php</exclude>
<exclude>tests/Writer/Table/Strategy/AbsWorkspaceTableStrategyTest.php</exclude>
</testsuite>
<testsuite name="main-writer-tests-1">
<file>tests/Writer/StorageApiLocalTableWriterTest.php</file>
<file>tests/Writer/StorageApiHeadlessWriterTest.php</file>
</testsuite>
<testsuite name="main-writer-tests-2">
<!-- Any test added to tests/Writer will be run in this suite -->
<directory>tests/Writer</directory>
<exclude>tests/Writer/File</exclude>
<exclude>tests/Writer/Helper</exclude>
<exclude>tests/Writer/Table</exclude>
<exclude>tests/Writer/Redshift</exclude>
<exclude>tests/Writer/Workspace</exclude>
<exclude>tests/Writer/TableDefinitionTest.php</exclude>
<exclude>tests/Writer/TableDefinitionV2Test.php</exclude>
<exclude>tests/Writer/SnowflakeWriterMetadataTest.php</exclude>
<exclude>tests/Writer/StorageApiFileWriterTest.php</exclude>
<exclude>tests/Writer/StorageApiHeadlessWriterTest.php</exclude>
<exclude>tests/Writer/StorageApiLocalTableWriterTest.php</exclude>
<exclude>tests/Writer/StorageApiSlicedWriterTest.php</exclude>
</testsuite>
<testsuite name="redshift-writer-tests">
<directory>tests/Writer/Redshift</directory>
</testsuite>
<testsuite name="workspace-writer-tests">
<directory>tests/Writer/Workspace</directory>
<exclude>tests/Writer/Workspace/AbsWriterWorkspaceTest.php</exclude>
<exclude>tests/Writer/Workspace/SynapseWriterWorkspaceTest.php</exclude>
</testsuite>
<testsuite name="native-types">
<file>tests/Writer/TableDefinitionTest.php</file>
</testsuite>
<testsuite name="new-native-types">
<file>tests/Writer/TableDefinitionV2Test.php</file>
</testsuite>
<testsuite name="slice">
<directory>tests/Writer/Table</directory>
<file>tests/Writer/StorageApiLocalTableWriterTest.php</file>
<file>tests/Writer/StorageApiSlicedWriterTest.php</file>
<exclude>tests/Writer/Table/Source/AbsWorkspaceItemSourceFactoryTest.php</exclude>
<exclude>tests/Writer/Table/Strategy/AbsWorkspaceTableStrategyTest.php</exclude>
</testsuite>
<testsuite name="synapse-writer-tests">
<file>tests/Writer/File/Strategy/ABSWorkspaceTest.php</file>
<file>tests/Writer/Table/Source/AbsWorkspaceItemSourceFactoryTest.php</file>
<file>tests/Writer/Table/Strategy/AbsWorkspaceTableStrategyTest.php</file>
<file>tests/Writer/Workspace/AbsWriterWorkspaceTest.php</file>
<file>tests/Writer/Workspace/SynapseWriterWorkspaceTest.php</file>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">tests</directory>
</include>
<exclude>
<directory suffix=".php">vendor</directory>
</exclude>
</coverage>
</phpunit>