Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
phpunit.xml.dist 928 B
Newer Older
<?xml version="1.0" encoding="UTF-8"?>
drishu's avatar
drishu committed
<phpunit bootstrap="${drupal.root}/core/tests/bootstrap.php" backupGlobals="true" colors="true" cacheResult="false">
  <php>
    <ini name="error_reporting" value="32767"/>
    <ini name="memory_limit" value="-1"/>
    <env name="SIMPLETEST_IGNORE_DIRECTORIES" value="vendor,node_modules,test-site,${drupal.root}"/>
    <env name="SIMPLETEST_BASE_URL" value="${drupal.base_url}"/>
    <env name="SIMPLETEST_SPARQL_DB" value="sparql://${drupal.sparql.host}:${drupal.sparql.port}/?module=sparql_entity_storage"/>
    <env name="SIMPLETEST_DB" value="mysql://${drupal.database.user}:${drupal.database.password}@${drupal.database.host}:${drupal.database.port}/${drupal.database.name}"/>
  </php>
  <testsuites>
    <testsuite name="OpenEuropa Whitelabel Theme">
      <directory>./tests/</directory>
      <directory>./modules/**/tests/</directory>
    </testsuite>
  </testsuites>
</phpunit>