From fa770fd368e32950dd727e111a5d66e1dbb93716 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Fri, 9 Feb 2024 10:31:40 +0100 Subject: [PATCH] doc: Add missing RUST_BACKTRACE=1 This will print a backtrace when an internal code error happened. --- test/lint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lint/README.md b/test/lint/README.md index 1fba41d9eaa..1bfcb75327a 100644 --- a/test/lint/README.md +++ b/test/lint/README.md @@ -19,7 +19,7 @@ test runner To run all the lint checks in the test runner outside the docker, use: ```sh -( cd ./test/lint/test_runner/ && cargo fmt && cargo clippy && cargo run ) +( cd ./test/lint/test_runner/ && cargo fmt && cargo clippy && RUST_BACKTRACE=1 cargo run ) ``` #### Dependencies