Skip to content

Commit 4419ba4

Browse files
committed
not adding phpunit config cause for initial build fail
1 parent a95d971 commit 4419ba4

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
build/
22
composer.lock
33
composer.phar
4-
phpunit.*
54
vendor/
65
mailPiped/
76
*.lock

phpunit.xml.dist

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit bootstrap="vendor/autoload.php"
4+
backupGlobals="false"
5+
backupStaticAttributes="false"
6+
colors="false"
7+
convertErrorsToExceptions="true"
8+
convertNoticesToExceptions="true"
9+
convertWarningsToExceptions="true"
10+
processIsolation="false"
11+
stopOnFailure="false">
12+
<testsuites>
13+
<testsuite name="Mail Reader Parser Test Suite">
14+
<directory suffix=".php">tests/</directory>
15+
</testsuite>
16+
</testsuites>
17+
18+
<filter>
19+
<whitelist>
20+
<directory suffix=".php">decode/</directory>
21+
</whitelist>
22+
</filter>
23+
24+
<logging>
25+
<log type="tap" target="build/report.tap"/>
26+
<log type="junit" target="build/report.junit.xml"/>
27+
<log type="coverage-html" target="build/coverage"/>
28+
<log type="coverage-text" target="build/coverage.txt"/>
29+
<log type="coverage-clover" target="build/logs/clover.xml"/>
30+
</logging>
31+
</phpunit>
32+

0 commit comments

Comments
 (0)