Skip to content
Snippets Groups Projects
Select Git revision
  • a33f6f47d05cedfc757ab3af9d96af6d909c4924
  • main default protected
  • revert-ffead0bd
  • feature/init
  • 1.1.8
  • 1.1.7
  • 1.1.6
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.2
  • 1.0.2-beta3
  • 1.0.2-beta2
  • 1.0.2-beta1
  • 1.0.1
  • 1.0.1-beta4
  • 1.0.1-beta3
  • 1.0.1-beta2
  • 1.0.1-beta1
  • 1.0.0
  • 1.0.0-beta6
24 results

phpunit-integration.xml

Blame
  • phpunit-integration.xml 893 B
    <phpunit bootstrap="tests/integration/bootstrap.php"
             backupGlobals="false"
         >
        <testsuites>
            <testsuite>
                <directory prefix="Test" suffix=".php">./tests/integration</directory>
            </testsuite>
        </testsuites>
    
        <filter>
            <whitelist>
                <directory suffix=".php">src</directory>
            </whitelist>
        </filter>
    
        <logging>
            <log type="junit" target="build-coverage/report.junit.xml"/>
            <log type="coverage-html" target="build-coverage/coverage" charset="UTF-8" yui="true" highlight="true"/>
            <log type="coverage-text" target="build-coverage/coverage.txt"/>
            <log type="coverage-clover" target="build-coverage/clover.xml"/>
        </logging>
    
        <php>
            <env name="WP_DEVELOP_DIR" value="/tmp/wordpress-develop"/>
            <env name="WC_DEVELOP_DIR" value="/tmp/woocommerce"/>
        </php>
    
    </phpunit>