Created
July 25, 2019 17:03
-
-
Save andreybolonin/2f7bbe6d326c50e021b109c3944f4d9f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html --> | |
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd" | |
backupGlobals="false" | |
colors="true" | |
bootstrap="config/bootstrap.php" | |
> | |
<php> | |
<ini name="error_reporting" value="-1" /> | |
<env name="APP_ENV" value="test" /> | |
<env name="SHELL_VERBOSITY" value="-1" /> | |
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" /> | |
<env name="APP_ENV" value="test"/> | |
<env name="APP_SECRET" value="e6c838251d34acd2e18ebfc1de2bab85"/> | |
<env name="DATABASE_URL" value="pgsql://root:[email protected]:5432/vipaero_crs"/> | |
</php> | |
<testsuites> | |
<testsuite name="Project Test Suite"> | |
<directory>tests</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist> | |
<directory>src</directory> | |
</whitelist> | |
</filter> | |
<listeners> | |
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" /> | |
</listeners> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment