Add .phpunit.result.cache to the .gitignore
PHPUnit version 7.3 adds a new argument `--cache-result` which allows you to do awesome things like re-run test failures using a command like: `phpunit --cache-result --order-by=defects --stop-on-defect` The cache file is stored as `.phpunit.result.cache` I believe PHPUnit 8 will have caching on by default, so this file will start popping up in everyone's project quickly.
This commit is contained in:
parent
3e43e6b1d0
commit
6b40d49efd
|
@ -11,3 +11,4 @@ Homestead.yaml
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
.env
|
.env
|
||||||
|
.phpunit.result.cache
|
||||||
|
|
Loading…
Reference in New Issue