mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
e1b1bbf8b3
Added phpcs config Added GitHub Actions badge Re-organized tests folder
28 lines
811 B
XML
28 lines
811 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/silverstripe/framework/tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
<testsuites>
|
|
<testsuite name="Default">
|
|
<directory suffix=".php">tests/PHPUnit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>sanitychecks</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<coverage includeUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">src/</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">tests/</directory>
|
|
</exclude>
|
|
</coverage>
|
|
|
|
<php>
|
|
<get name="flush" value="1"/>
|
|
</php>
|
|
</phpunit>
|