1
0
mirror of https://github.com/danog/loop.git synced 2024-11-26 11:54:51 +01:00
loop/phpunit.xml.dist

18 lines
797 B
Plaintext
Raw Permalink Normal View History

2020-07-21 18:06:19 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2023-09-30 15:04:23 +02:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" resolveDependencies="true" executionOrder="random">
2021-04-21 15:34:59 +02:00
<coverage>
<include>
<directory suffix=".php">lib</directory>
</include>
<report>
<html outputDirectory="build/coverage"/>
</report>
</coverage>
<testsuites>
<testsuite name="Amp Concurrent">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
2020-07-21 18:06:19 +02:00
</phpunit>