Skip to content

Commit

Permalink
Fix: Generate coverage in an ignored directory (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and alcohol committed Jul 1, 2016
1 parent f04c550 commit 9263a24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
build/
vendor/
.php_cs.cache
composer.lock
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Expand Up @@ -20,8 +20,8 @@

<logging>
<log type="coverage-text" target="php://stderr" />
<log type="coverage-html" target="coverage" showUncoveredFiles="true"/>
<log type="coverage-clover" target="coverage.xml" showUncoveredFiles="true"/>
<log type="coverage-html" target="build/coverage" showUncoveredFiles="true"/>
<log type="coverage-clover" target="build/coverage.xml" showUncoveredFiles="true"/>
</logging>

</phpunit>

0 comments on commit 9263a24

Please sign in to comment.