From b5d3f62cfa833e219aa6b4589d6d3babb58322ca Mon Sep 17 00:00:00 2001 From: azumakuniyuki Date: Fri, 20 Dec 2024 16:55:05 +0900 Subject: [PATCH] Suppress warning messages at "make test" until v5.5.0 #563 --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9ea130b9e..ab2bb5cc6 100644 --- a/Makefile +++ b/Makefile @@ -43,10 +43,12 @@ install-from-local: cpanm test: user-test author-test user-test: - $(PROVE) t/ + # Suppress warning message until v5.5.0 + $(PROVE) t/ 2> /dev/null author-test: - $(PROVE) xt/ + # Suppress warning message until v5.5.0 + $(PROVE) xt/ 2> /dev/null check: find lib -type f -exec grep -E ' $$' {} /dev/null \;