From b9aeb3e57495d65d27da3c47032a2d2c335347a3 Mon Sep 17 00:00:00 2001 From: bashonly Date: Mon, 29 Apr 2024 18:27:03 -0500 Subject: [PATCH] [Makefile] Add `-Werror` arg to `test` recipe Authored by: bashonly --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fb4af334a..ad9fa02ab 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ codetest: flake8 . test: - $(PYTHON) -m pytest + $(PYTHON) -m pytest -Werror $(MAKE) codetest offlinetest: codetest