All checks were successful
Deploy Feature Branch to Test (haus.test.kies-media.de) / Deploy to Test Environment (push) Successful in 44s
Lint / PHP Syntax Check (push) Successful in 59s
PHPUnit / PHP Unit Tests (push) Successful in 36s
Lint / PHP Syntax Check (pull_request) Successful in 29s
Lint / HTML Lint (htmlhint) (push) Successful in 1m35s
Lint / CSS Lint (stylelint) (push) Successful in 1m39s
PHPUnit / PHP Unit Tests (pull_request) Successful in 40s
Lint / CSS Lint (stylelint) (pull_request) Successful in 1m13s
Lint / HTML Lint (htmlhint) (pull_request) Successful in 1m13s
PHPUnit 11 wirft eine 'You are not using the latest version of PHPUnit' warning, die den CI failt. Mit failOnPhpunitWarning=false wird das ignoriert. failOnRisky + failOnEmptyTestSuite + beStrictAboutOutputDuringTests bleiben aktiv.
32 lines
1014 B
XML
32 lines
1014 B
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"
|
|
failOnRisky="true"
|
|
failOnEmptyTestSuite="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
failOnPhpunitWarning="false"
|
|
>
|
|
<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>
|