Skip to content

Commit

Permalink
Suppress warning messages at "make test" until v5.5.0 #563
Browse files Browse the repository at this point in the history
  • Loading branch information
azumakuniyuki committed Dec 20, 2024
1 parent cf459ba commit b5d3f62
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \;
Expand Down

0 comments on commit b5d3f62

Please sign in to comment.