Skip to content

Instantly share code, notes, and snippets.

@msaari
Created November 17, 2019 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msaari/c653ab5771a76d8b67141893f5616735 to your computer and use it in GitHub Desktop.
Save msaari/c653ab5771a76d8b67141893f5616735 to your computer and use it in GitHub Desktop.
PHPUnit configuration from Relevanssi
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<php>
<ini name="display_errors" value="true"/>
</php>
<testsuites>
<testsuite name="relevanssi">
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment