From 3ceb3c256e1b1a99927786caf81aa0ca5e3b6b47 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 23 Oct 2021 09:48:30 -0500 Subject: [PATCH] chore: Remove unused justfile This was a kbknapp thing and he doesn't use it anymore. See #2900. --- justfile | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 justfile diff --git a/justfile b/justfile deleted file mode 100644 index d58c534518b..00000000000 --- a/justfile +++ /dev/null @@ -1,41 +0,0 @@ -run-test TESTG TEST="": - cargo test --test {{TESTG}} -- {{TEST}} - -debug TESTG TEST="": - cargo test --test {{TESTG}} --features debug -- {{TEST}} - -run-tests: - cargo test --features "wrap_help yaml regex unstable-replace" - -@bench: - cargo bench - -@lint: - rustup component add clippy - rustup component add rustfmt - cargo clippy --features "wrap_help yaml regex unstable-replace" -- -D warnings - cargo fmt -- --check - -clean: - cargo clean - find . -type f -name "*.orig" -exec rm {} \; - find . -type f -name "*.bk" -exec rm {} \; - find . -type f -name ".*~" -exec rm {} \; - -top-errors NUM="95": - @cargo check 2>&1 | head -n {{NUM}} - -count-errors: - @cargo check 2>&1 | grep -e '^error' | wc -l - -find-errors: - @cargo check 2>&1 | grep --only-matching -e '-->[^:]*' | sort | uniq -c | sort -nr - -count-warnings: - @cargo check 2>&1 | grep -e '^warning' | wc -l - -find-warnings: - @cargo check 2>&1 | grep -A1 -e 'warning' | grep --only-matching -e '-->[^:]*' | sort | uniq -c | sort -nr - -@count-failures: - ./count-tests.sh