From cff6452e9019051390c9bffc6a80574da71cca9b Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Fri, 17 Oct 2025 13:32:11 +0200 Subject: [PATCH] Ignore test-dashboard related files After bors merges a PR, a message may be posted from the CI onto the PR comment thread directing the user to use the following commands to look at the test differences: ``` cargo run --manifest-path src/ci/citool/Cargo.toml -- \ test-dashboard [SOMEID] --output-dir test-dashboard open test-dashboard/index.html ``` This command creates the `.citool-cache` and `test-dashboard` directories, whose contents should not enter the repository and can be ignored by `git`. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 5988a64916ad8..0030f22363c24 100644 --- a/.gitignore +++ b/.gitignore @@ -90,6 +90,10 @@ node_modules ## Rustdoc GUI tests tests/rustdoc-gui/src/**.lock +## Test dashboard +.citool-cache/ +test-dashboard/ + ## direnv /.envrc /.direnv/