forked from ec-europa/toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
75 lines (75 loc) · 3.1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupGlobals="true"
colors="true"
processIsolation="true"
stopOnFailure="false"
bootstrap="vendor/autoload.php">
<php>
<env name="CI" value="drone" force="true"/>
<env name="QA_WEBSITE_URL" value="http://web:8080" force="true"/>
<env name="TOOLKIT_DEBUG_EXPECTATIONS" value="false"/>
<env name="DRUPAL_DATABASE_NAME" value="drupal"/>
<env name="DRUPAL_DATABASE_USERNAME" value="root"/>
<env name="DRUPAL_DATABASE_HOST" value="mysql"/>
</php>
<testsuites>
<testsuite name="Unit GitHooks">
<file>tests/Unit/GitHooksCommandsTest.php</file>
</testsuite>
<testsuite name="Unit ReplaceBlock">
<file>tests/Unit/ReplaceBlockTest.php</file>
</testsuite>
<testsuite name="Blackfire and Build">
<file>tests/Features/Commands/BlackfireCommandsTest.php</file>
<file>tests/Features/Commands/BuildCommandsTest.php</file>
</testsuite>
<testsuite name="ComponentCheck">
<file>tests/Features/Commands/ComponentCheckCommandsTest.php</file>
</testsuite>
<testsuite name="Configuration">
<file>tests/Features/Commands/ConfigurationCommandsTest.php</file>
</testsuite>
<testsuite name="Docker">
<file>tests/Features/Commands/DockerCommandsTest.php</file>
</testsuite>
<testsuite name="Documentation">
<file>tests/Features/Commands/DocumentationCommandsTest.php</file>
</testsuite>
<testsuite name="Drupal">
<file>tests/Features/Commands/DrupalCommandsTest.php</file>
</testsuite>
<testsuite name="Dump">
<file>tests/Features/Commands/DumpCommandsTest.php</file>
</testsuite>
<testsuite name="GitHooks">
<file>tests/Features/Commands/GitHooksCommandsTest.php</file>
</testsuite>
<testsuite name="Install">
<file>tests/Features/Commands/InstallCommandsTest.php</file>
</testsuite>
<testsuite name="Lint">
<file>tests/Features/Commands/LintCommandsTest.php</file>
</testsuite>
<testsuite name="Patch">
<file>tests/Features/Commands/PatchCommandsTest.php</file>
</testsuite>
<testsuite name="Release">
<file>tests/Features/Commands/ReleaseCommandsTest.php</file>
</testsuite>
<testsuite name="SymlinkProject">
<file>tests/Features/Commands/SymlinkProjectCommandsTest.php</file>
</testsuite>
<testsuite name="Tests">
<file>tests/Features/Commands/TestsCommandsTest.php</file>
</testsuite>
<testsuite name="Tool">
<file>tests/Features/Commands/ToolCommandsTest.php</file>
</testsuite>
<testsuite name="Gitleaks">
<file>tests/Features/Commands/GitleaksCommandsTest.php</file>
</testsuite>
</testsuites>
</phpunit>