mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 08:45:04 +01:00
As well rename test dir to tests, as Pest does not support dir without s on the end. Also, remove PHP requirement from composer.json as we already have check-in bin/dep and it's better to have the check only in one place (now they already out of sync).
22 lines
845 B
XML
22 lines
845 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" verbose="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
<coverage includeUncoveredFiles="true">
|
|
<include>
|
|
<directory>src/</directory>
|
|
<directory>recipe/</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">vendor/</directory>
|
|
<directory>bin/</directory>
|
|
</exclude>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="Src">
|
|
<directory>tests/src/</directory>
|
|
</testsuite>
|
|
<testsuite name="Joy">
|
|
<directory>tests/joy/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|