Some checks failed
Deploy Feature Branch to Test (haus.test.kies-media.de) / Deploy to Test Environment (push) Successful in 50s
Lint / PHP Syntax Check (push) Successful in 1m4s
PHPUnit / PHP Unit Tests (push) Failing after 36s
Lint / PHP Syntax Check (pull_request) Successful in 29s
Lint / HTML Lint (htmlhint) (push) Successful in 1m43s
Lint / CSS Lint (stylelint) (push) Successful in 1m48s
PHPUnit / PHP Unit Tests (pull_request) Failing after 45s
Lint / CSS Lint (stylelint) (pull_request) Successful in 1m19s
Lint / HTML Lint (htmlhint) (pull_request) Successful in 1m20s
33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
cacheDirectory=".phpunit.cache"
|
|
failOnDeprecation="true"
|
|
failOnRisky="true"
|
|
failOnEmptyTestSuite="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
cacheResultFile=".phpunit.cache/test-results"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Unit">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<source>
|
|
<include>
|
|
<directory>app</directory>
|
|
</include>
|
|
</source>
|
|
|
|
<coverage cacheDirectory=".phpunit.coverage.cache">
|
|
<report>
|
|
<clover outputFile="build/coverage/clover.xml"/>
|
|
<html outputDirectory="build/coverage/html" lowUpperBound="50" highLowerBound="85"/>
|
|
<text outputFile="php://stdout" showOnlySummary="true"/>
|
|
</report>
|
|
</coverage>
|
|
</phpunit>
|