Skip to content

Commit

Permalink
[TASK] Avoid phpunit cache file (#83)
Browse files Browse the repository at this point in the history
A setting in phpunit.xml avoids creating the
.phpunit.result.cache file, which is pretty much
useless for this small repository anyways.
  • Loading branch information
lolli42 authored Aug 2, 2022
1 parent e556fe6 commit aac22d2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/composer.lock
/.idea
/.phpunit.result.cache
/vendor
1 change: 1 addition & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<phpunit
bootstrap="vendor/autoload.php"
backupGlobals="true"
cacheResult="false"
colors="true"
processIsolation="false"
verbose="true">
Expand Down

0 comments on commit aac22d2

Please sign in to comment.