-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 956 Bytes
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 956 Bytes
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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="gitea">
<file>./tests/VCS/Adapter/GiteaTest.php</file>
</testsuite>
<testsuite name="forgejo">
<file>./tests/VCS/Adapter/ForgejoTest.php</file>
</testsuite>
<testsuite name="github">
<file>./tests/VCS/Adapter/GitHubTest.php</file>
</testsuite>
<testsuite name="gitlab">
<file>./tests/VCS/Adapter/GitLabTest.php</file>
</testsuite>
<testsuite name="gogs">
<file>./tests/VCS/Adapter/GogsTest.php</file>
</testsuite>
</testsuites>
</phpunit>