Skip to content

Commit

Permalink
exclude files from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
prolic committed Dec 12, 2016
1 parent a09e32d commit 997b8e5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions phpunit.xml.pdo_mysql
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<file>./src/PersistenceStrategy/PostgresAggregateStreamStrategy.php</file>
<file>./src/PersistenceStrategy/PostgresSimpleStreamStrategy.php</file>
<file>./src/PersistenceStrategy/PostgresSingleStreamStrategy.php</file>
<file>./src/Projection/PostgresEventStoreProjection.php</file>
<file>./src/Projection/PostgresEventStoreQuery.php</file>
<file>./src/Projection/PostgresEventStoreReadModelProjection.php</file>
<file>./src/PostgresEventStore.php</file>
</exclude>
</whitelist>
</filter>

Expand Down
9 changes: 9 additions & 0 deletions phpunit.xml.pdo_pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<file>./src/PersistenceStrategy/MySQLAggregateStreamStrategy.php</file>
<file>./src/PersistenceStrategy/MySQLSimpleStreamStrategy.php</file>
<file>./src/PersistenceStrategy/MySQLSingleStreamStrategy.php</file>
<file>./src/Projection/MySQLEventStoreProjection.php</file>
<file>./src/Projection/MySQLEventStoreQuery.php</file>
<file>./src/Projection/MySQLEventStoreReadModelProjection.php</file>
<file>./src/MySQLEventStore.php</file>
</exclude>
</whitelist>
</filter>

Expand Down

0 comments on commit 997b8e5

Please sign in to comment.