From 6ffcd8195d7925438b05b50578c3023aae242e6f Mon Sep 17 00:00:00 2001 From: Chris Pryer <14341145+cnpryer@users.noreply.github.com> Date: Wed, 29 Mar 2023 17:15:09 -0400 Subject: [PATCH] Don't run cargo test in pre-commit (#548) --- .pre-commit-config.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 98d05a1f..b2a21545 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,16 +13,16 @@ repos: args: ["--all", "--", "--check"] fail_fast: true - - id: cargo-test - name: cargo test - description: Run Rust tests. - entry: cargo test - language: system - types: [rust] - files: Cargo\.toml|\.rs$ - pass_filenames: false - args: ["--all-features", "--", "--test-threads=1"] - fail_fast: true + # - id: cargo-test + # name: cargo test + # description: Run Rust tests. + # entry: cargo test + # language: system + # types: [rust] + # files: Cargo\.toml|\.rs$ + # pass_filenames: false + # args: ["--all-features", "--", "--test-threads=1"] + # fail_fast: true - id: clippy name: clippy