-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.travis-phpunit.xml
More file actions
17 lines (17 loc) · 726 Bytes
/
.travis-phpunit.xml
File metadata and controls
17 lines (17 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" convertNoticesToExceptions="false" processIsolation="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd">
<testsuites>
<testsuite name="Laravel Flysystem Others PHPUnit Tests">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log target="phpunit-coverage.xml" type="coverage-clover" />
</logging>
</phpunit>