forked from evaisse/php-json-schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (31 loc) · 1.05 KB
/
phpunit.xml
File metadata and controls
32 lines (31 loc) · 1.05 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Test Suite">
<directory>./tests/JSONSchemaGenerator</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./src/JSONSchemaGenerator</directory>
</include>
<exclude>
<directory>./vendor</directory>
<directory>./Tests</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml" />
<html outputDirectory="build/logs/html-coverage" />
</report>
</coverage>
<logging>
<junit outputFile="build/artifacts/logs/junit.xml" />
<testdoxText outputFile="build/logs/testdox.txt"/>
</logging>
</phpunit>