From 724d3ea38928bfc4753450c3aa6136e7ef711f71 Mon Sep 17 00:00:00 2001 From: Marc Sune Date: Wed, 12 Jun 2024 23:55:00 +0200 Subject: [PATCH] test: turn warning as errors Pass -Werror to pytest so that warnings become errors. --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 0f2ffc0..6dbd93d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,4 +3,4 @@ test: @rm -rf data/ || true @mkdir -p data - @PYTHONPATH=`pwd`/../src/ pytest -v -s + @PYTHONPATH=`pwd`/../src/ pytest -Werror -v -s