Skip to content

Commit d7bc0a0

Browse files
committed
Fixed target path of coverage output
1 parent 606474b commit d7bc0a0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ vendor/*
1313
vagrant/.vagrant
1414

1515
tests/log/*
16+
!tests/log/.gitkeep
1617
tests/TestConfiguration.php
1718

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</testsuite>
66
</testsuites>
77
<logging>
8-
<log type="coverage-html" target="./log" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
8+
<log type="coverage-html" target="./tests/log" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
99
<log type="coverage-text" target="php://stdout"/>
10-
<log type="coverage-clover" target="./log/clover.xml"/>
10+
<log type="coverage-clover" target="./tests/log/clover.xml"/>
1111
</logging>
1212
<filter>
1313
<whitelist processUncoveredFilesFromWhitelist="false">

tests/log/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)