Skip to content
Snippets Groups Projects
Select Git revision
  • 03c4323504cb8b67c220ba6a478a06efebd6e15f
  • master default protected
  • new-build-architecture
  • beta
  • 1.20.1
  • 1.20.0
  • 1.19.4
  • 1.19.3
  • 1.19.2
  • 1.19.1
  • 1.19
  • 1.18.1
  • 1.18.0
  • 1.17.0
  • 1.16.3
  • 1.16.2
  • 1.16.1
  • 1.16.0
  • 1.15.4
  • 1.15.3
  • 1.15.2
  • 1.15.1
  • 1.15.0
  • 1.14.1
24 results

main.py

Blame
  • phpunit.xml.dist 1.09 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache">
      <php>
        <ini name="display_errors" value="1"/>
        <ini name="error_reporting" value="-1"/>
        <server name="APP_ENV" value="test" force="true"/>
        <server name="SHELL_VERBOSITY" value="-1"/>
        <server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
        <server name="SYMFONY_PHPUNIT_VERSION" value="10.1"/>
      </php>
      <testsuites>
        <testsuite name="Project Test Suite">
          <directory>tests</directory>
        </testsuite>
      </testsuites>
      <coverage/>
      <!-- Run `composer require symfony/panther` before enabling this extension -->
      <!--
        <extensions>
            <extension class="Symfony\Component\Panther\ServerExtension" />
        </extensions>
        -->
      <source>
        <include>
          <directory suffix=".php">src</directory>
        </include>
      </source>
    </phpunit>