2018-01-09 06:41:48 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-06-16 01:41:16 +02:00
|
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
2019-06-01 14:26:22 +02:00
|
|
|
bootstrap="vendor/autoload.php"
|
2018-01-09 06:41:48 +01:00
|
|
|
backupGlobals="false"
|
|
|
|
beStrictAboutCoversAnnotation="true"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
2018-01-22 06:27:22 +01:00
|
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
2018-01-09 06:41:48 +01:00
|
|
|
beStrictAboutTodoAnnotatedTests="true"
|
2020-01-12 16:44:13 +01:00
|
|
|
colors="true"
|
2019-06-15 15:04:52 +02:00
|
|
|
verbose="true"
|
2020-08-23 16:32:07 +02:00
|
|
|
executionOrder="random"
|
2019-06-15 15:04:52 +02:00
|
|
|
>
|
2020-11-26 21:23:10 +01:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
</include>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">src/Psalm/Issue/</directory>
|
|
|
|
<directory suffix=".php">src/Psalm/Internal/Stubs/</directory>
|
|
|
|
<directory suffix=".php">src/Psalm/Internal/LanguageServer/</directory>
|
|
|
|
<directory suffix=".php">src/Psalm/Internal/ExecutionEnvironment/</directory>
|
|
|
|
<directory suffix=".php">src/Psalm/SourceControl/</directory>
|
|
|
|
<file>src/command_functions.php</file>
|
|
|
|
<file>src/psalm.php</file>
|
|
|
|
<file>src/psalm-language-server.php</file>
|
|
|
|
<file>src/psalter.php</file>
|
|
|
|
<file>src/psalm_plugin.php</file>
|
|
|
|
<file>src/psalm-refactor.php</file>
|
|
|
|
<file>src/Psalm/Plugin/Shepherd.php</file>
|
|
|
|
<file>src/Psalm/Internal/CallMap.php</file>
|
|
|
|
<file>src/Psalm/Internal/Fork/Pool.php</file>
|
|
|
|
<file>src/Psalm/Internal/Fork/Restarter.php</file>
|
|
|
|
<file>src/Psalm/Internal/PropertyMap.php</file>
|
|
|
|
<file>src/Psalm/Internal/Provider/ClassLikeStorageCacheProvider.php</file>
|
|
|
|
<file>src/Psalm/Internal/Provider/FileReferenceCacheProvider.php</file>
|
|
|
|
<file>src/Psalm/Internal/Provider/FileStorageCacheProvider.php</file>
|
|
|
|
<file>src/Psalm/Internal/Provider/ParserCacheProvider.php</file>
|
|
|
|
</exclude>
|
|
|
|
<report>
|
2020-12-04 21:11:14 +01:00
|
|
|
<!-- <clover outputFile="build/logs/clover.xml"/> -->
|
|
|
|
<!-- <html outputDirectory="build/logs/phpunit-html/"/> -->
|
2020-11-26 21:23:10 +01:00
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
|
2020-02-18 21:04:45 +01:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="psalm">
|
|
|
|
<directory>tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2017-12-14 07:10:20 +01:00
|
|
|
</phpunit>
|