We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a287eb4 commit d572081Copy full SHA for d572081
.gitignore
@@ -20,6 +20,7 @@
20
/.psalm/cache
21
22
# PHPUnit
23
+/.phpunit.cache
24
.phpunit.result.cache
25
26
# Temporary files generated by PHPT test runner
phpunit.xml
@@ -4,6 +4,7 @@
4
bootstrap="tests/bootstrap.php"
5
colors="true"
6
verbose="true"
7
+ cacheResultFile=".phpunit.cache/test-results"
8
failOnRisky="true"
9
failOnWarning="true">
10
<testsuites>
@@ -17,7 +18,8 @@
17
18
</testsuite>
19
</testsuites>
- <coverage processUncoveredFiles="true"
+ <coverage cacheDirectory=".phpunit.cache/code-coverage"
+ processUncoveredFiles="true"
ignoreDeprecatedCodeUnits="true">
<include>
<directory suffix=".php">src</directory>
0 commit comments