From c36cac6b546973b7262f658d14a55403e6968ba0 Mon Sep 17 00:00:00 2001 From: bashonly Date: Mon, 29 Apr 2024 18:25:12 -0500 Subject: [PATCH] [Makefile] Bring `offlinetest` recipe on par with `devscripts.run_tests` Authored by: bashonly --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cef4bc6cb..fb4af334a 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ test: $(MAKE) codetest offlinetest: codetest - $(PYTHON) -m pytest -k "not download" + $(PYTHON) -m pytest -Werror -m "not download" CODE_FOLDERS_CMD = find yt_dlp -type f -name '__init__.py' | sed 's,/__init__.py,,' | grep -v '/__' | sort CODE_FOLDERS != $(CODE_FOLDERS_CMD)