forked from mayflower/PHProjekt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit-travis.xml
33 lines (29 loc) · 1.15 KB
/
phpunit-travis.xml
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
<phpunit
bootstrap="phprojekt/tests/UnitTests/Bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
strict="true">
<php>
<includePath>phprojekt/tests/UnitTests/</includePath>
<env name="P6_TEST_CONFIG" value="phprojekt/tests/UnitTests/configuration-travis.php"/>
</php>
<testsuites>
<testsuite name="Phprojekt Test Suite">
<directory>phprojekt/tests/UnitTests</directory>
<exclude>phprojekt/tests/UnitTests/Note</exclude>
<exclude>phprojekt/tests/UnitTests/Helpdesk</exclude>
<exclude>phprojekt/tests/UnitTests/History</exclude>
<exclude>phprojekt/tests/UnitTests/Module</exclude>
<exclude>phprojekt/tests/UnitTests/Minutes</exclude>
<exclude>phprojekt/tests/UnitTests/Selenium</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>application</directory>
<directory>phprojekt/library/Phprojekt</directory>
<file>phprojekt/library/Phprojekt.php</file>
</whitelist>
</filter>
</phpunit>