Skip to content

Commit

Permalink
Fix up phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Jul 24, 2023
1 parent f7d6190 commit b8a4fbe
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php">
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
<!-- E_ALL => 32767 -->
<!-- E_ALL & ~E_USER_DEPRECATED => 16383 -->
<ini name="error_reporting" value="16383"/>
</php>
</php>

<!-- Add any additional test suites you want to run here -->
<testsuites>
<testsuite name="meta">
<directory>tests/TestCase/</directory>
</testsuite>
</testsuites>
<!-- Add any additional test suites you want to run here -->
<testsuites>
<testsuite name="meta">
<directory>tests/TestCase/</directory>
</testsuite>
</testsuites>

<!-- Prevent coverage reports from looking in tests and vendors -->
<filter>
<whitelist>
<!-- Prevent coverage reports from looking in tests and vendors -->
<coverage>
<include>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</include>
</coverage>

</phpunit>

0 comments on commit b8a4fbe

Please sign in to comment.