mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-14 01:06:12 +01:00
Daniel Siepmann
2e4c9cc04e
* Support generation of code coverage generation * Remove useless caching within GitHub * Add TYPO3 11.5 within CI * Update phpstan Replace friendsoftypo3/phpstan-typo3 with saschaegerer/phpstan. The friendsoftypo3 is intended for TYPO3 itself, while saschaegerer is intended for community. Also update all related packages. Fix some new findings and update baseline. * Run composer none interactive in CI * Remove dependency checker * Migrate tests to no longer use legacy dependencies * https://forge.typo3.org/issues/97479 * Fix phpstan findings
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
beStrictAboutCoversAnnotation="false"
|
|
bootstrap="vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>Tests/Unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="functional">
|
|
<directory>Tests/Functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">Classes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<php>
|
|
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
|
|
</php>
|
|
</phpunit>
|