From 2d8e69427597fa65c6a7773e8ebbb1a8ce82bce6 Mon Sep 17 00:00:00 2001 From: Antonio Hickey Date: Sat, 3 Aug 2024 19:23:46 -0400 Subject: [PATCH] fix: cargo test pre commit hook --- .pre-commit-hooks.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index d4af11c..ed5928a 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -26,7 +26,8 @@ entry: cargo test language: system types: [rust] - args: ["--all-targets", "--", "--nocapture", "--test-threads=1", "--test"] + args: ["--all-targets"] + pass_filenames: false - id: build name: build description: Build using cargo build