Abel Hoogeveen
3ebd91d2ef
All checks were successful
continuous-integration/drone/push Build is passing
- This resulted in some changes needing to be made in the test folder. All tests have been updated to work with these updated dependencies. - Also, PHP 7.1 is no longer supported. - psr/log is no longer a dependency of Core
29 lines
987 B
XML
29 lines
987 B
XML
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
|
bootstrap="autoload.php"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
colors="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="Core Functionality">
|
|
<directory>./</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="false">
|
|
<directory suffix=".php">../</directory>
|
|
<exclude>
|
|
<directory suffix=".php">../vendor/</directory>
|
|
<directory suffix=".php">../test/</directory>
|
|
<directory suffix=".php">../src/Layout/</directory>
|
|
<directory suffix=".php">../src/Config/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit> |