From 5b584cbb579899c047aee57624495efb15b6b9de Mon Sep 17 00:00:00 2001 From: Bobby Noelte Date: Thu, 10 Sep 2026 22:49:42 +0200 Subject: [PATCH] chore: ignore the artifacts the test suite writes into the work tree (#1292) test_configmigrate leaves a .new working copy behind whenever a migration test fails, test_visualize writes example_report.pdf into the current directory, and test_config creates tests/testdata/docs/. All three showed up as untracked noise in every status and invited accidental commits. Co-authored-by: Andreas --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index f24453a0..ff4d3496 100644 --- a/.gitignore +++ b/.gitignore @@ -260,6 +260,12 @@ tests/testdata/new_optimize_result* tests/testdata/openapi-new.json tests/testdata/openapi-new.md tests/testdata/config-new.md +# Working copies test_configmigrate leaves behind when a migration test fails +tests/testdata/*.new +# Written by test_visualize into the working directory +example_report.pdf +# Written by test_config into the working directory +tests/testdata/docs/ # FastHTML session key .sesskey