We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 638b810 commit ec19557Copy full SHA for ec19557
.gitignore
@@ -1,4 +1,5 @@
1
/vendor/
2
+/build/
3
/composer.lock
4
/.php_cs.cache
5
/.phpunit.result.cache
phpunit.xml
@@ -1,5 +1,10 @@
-<phpunit bootstrap="tests/bootstrap.php">
- <testsuites>
+<?xml version="1.0"?>
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="tests/bootstrap.php">
+ <coverage processUncoveredFiles="true">
+ <include>
+ <directory suffix=".php">src</directory>
6
+ </include>
7
+ </coverage> <testsuites>
8
<testsuite name="TwigModule test suite">
9
<directory suffix="Test.php">tests</directory>
10
</testsuite>
0 commit comments