Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

env:
Expand Down
10 changes: 7 additions & 3 deletions tests/travis/mysqli.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>../../vendor</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../../src</directory>
<exclude>
<directory suffix=".php">../../src/Drivers/Pdo</directory>
<file>../../src/Drivers/SimpleConnection.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>
10 changes: 7 additions & 3 deletions tests/travis/pdo.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>../../vendor</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../../src</directory>
<exclude>
<directory suffix=".php">../../src/Drivers/Mysqli</directory>
<file>../../src/Drivers/SimpleConnection.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>