Skip to content

Commit ec19557

Browse files
committed
Coverage report
1 parent 638b810 commit ec19557

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/vendor/
2+
/build/
23
/composer.lock
34
/.php_cs.cache
45
/.phpunit.result.cache

phpunit.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
<phpunit bootstrap="tests/bootstrap.php">
2-
<testsuites>
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="tests/bootstrap.php">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">src</directory>
6+
</include>
7+
</coverage> <testsuites>
38
<testsuite name="TwigModule test suite">
49
<directory suffix="Test.php">tests</directory>
510
</testsuite>

0 commit comments

Comments
 (0)