Skip to content

Commit

Permalink
Added coverage-html test logging, added the report folder to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ramlev committed Mar 21, 2016
1 parent e97aa92 commit c51ea69
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tests/report
29 changes: 19 additions & 10 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php"
>
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php">
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./tests/report" charset="UTF-8"
highlight="true"
lowUpperBound="50" highLowerBound="80" />
</logging>
<testsuites>
<testsuite name="AeroGearPush Test Suite">
<directory>./tests/AeroGearPush</directory>
Expand Down

0 comments on commit c51ea69

Please sign in to comment.