From 6aa9f898b4d907c0ea6f5b621ad72bac5fca095d Mon Sep 17 00:00:00 2001 From: Pieter De Gendt Date: Tue, 22 Oct 2024 18:53:49 +0200 Subject: [PATCH] ci: tox: Turn pytest warnings into errors Don't allow warnings during CI testing. Signed-off-by: Pieter De Gendt --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2f7d6824..3356ebe5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,4 +27,4 @@ jobs: - name: install tox run: pip3 install tox - name: tox - run: tox -c 'check out' + run: tox -c 'check out' -- -W error