From f02692a566f0d3456a5960585b19b5c57eb0389d Mon Sep 17 00:00:00 2001 From: Ian Dunn Date: Thu, 13 Oct 2022 11:39:30 -0700 Subject: [PATCH] Tests: Explicitly ignore directories for performance These should be implicitly ignored because of the `ignoreDotFiles`, `ignoreVCS`, and `ignoreVCSIgnored` settings, but some of them weren't for some reason. That was causing a noticable delay between when a file was saved and when the tests relaunched. --- phpunit-watcher.yml.dist | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/phpunit-watcher.yml.dist b/phpunit-watcher.yml.dist index 22ee1024..3505e992 100644 --- a/phpunit-watcher.yml.dist +++ b/phpunit-watcher.yml.dist @@ -2,7 +2,12 @@ watch: directories: - ./ exclude: + - .github - assets + - dist + - node_modules + - vendor + - wordpress fileMask: '*.php' ignoreDotFiles: true ignoreVCS: true