From 28ab2383a14ad21d3ac3282241a33707427df810 Mon Sep 17 00:00:00 2001 From: James Bornholt Date: Thu, 13 Jul 2023 15:56:31 +0000 Subject: [PATCH] Disable new `items_after_test_module` Clippy lint This is new in 1.71, but seems to get confused by the test_case macro. It was supposedly fixed in https://github.com/rust-lang/rust-clippy/pull/10992 but that seems to not have entirely worked. Signed-off-by: James Bornholt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3309be2f..c71258d04 100644 --- a/Makefile +++ b/Makefile @@ -60,4 +60,4 @@ fmt-check: .PHONY: clippy clippy: @packages=`echo "$(CRATES)" | sed -E 's/(^| )/ -p /g'`; \ - cargo clippy $$packages --no-deps --all-targets --all-features -- -D clippy::all + cargo clippy $$packages --no-deps --all-targets --all-features -- -D clippy::all -A clippy::items-after-test-module