From 6b40d49efdcb30aad4e4e51ea9c2c19481806ac0 Mon Sep 17 00:00:00 2001 From: Caleb Porzio Date: Fri, 10 Aug 2018 16:52:21 -0400 Subject: [PATCH] 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 67c0aeab..7c34e0fc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ Homestead.yaml npm-debug.log yarn-error.log .env +.phpunit.result.cache