From 073172473bc82fa7b078523e53bc9956263f7cea Mon Sep 17 00:00:00 2001 From: augushong Date: Sat, 18 Jul 2026 23:57:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20gitignore=20=E5=BF=BD=E7=95=A5=20phpun?= =?UTF-8?q?it=20=E6=B5=8B=E8=AF=95=E7=BC=93=E5=AD=98=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tests/.phpunit.cache/ 是 phpunit 运行产生的测试结果缓存(phpunit.xml.dist cacheDirectory 指向),不应纳入版本控制。 --- .gitignore | 5 ++++- tests/.phpunit.cache/test-results | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 tests/.phpunit.cache/test-results diff --git a/.gitignore b/.gitignore index f51b44f..e3882fe 100644 --- a/.gitignore +++ b/.gitignore @@ -50,4 +50,7 @@ extend/base/common/command/curd/migrate_output.php /docker-dev/ /.sisyphus /.omo -/.playwright-mcp \ No newline at end of file +/.playwright-mcp + +# PHPUnit 测试结果缓存 +tests/.phpunit.cache/ \ No newline at end of file diff --git a/tests/.phpunit.cache/test-results b/tests/.phpunit.cache/test-results deleted file mode 100644 index b2e32e5..0000000 --- a/tests/.phpunit.cache/test-results +++ /dev/null @@ -1 +0,0 @@ -{"version":1,"defects":[],"times":{"tests\\Feature\\IsolationSmokeTest::test_isolation_probe_rolls_back":0.048,"tests\\Feature\\IsolationSmokeTest::test_refuses_non_test_database":0.004}} \ No newline at end of file