From 03529ea2db6e9d283c5ae51c22a295a2afd15951 Mon Sep 17 00:00:00 2001 From: Rafael Leira Date: Fri, 21 Apr 2023 10:43:30 +0200 Subject: [PATCH] added -werror to pytests as suggested in #68 by @teapot9 --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 00d6606..1e3d489 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -25,7 +25,7 @@ jobs: pip install .[dev] - name: Test with pytest - run: pytest --cov-report term --cov=pySMART + run: pytest --cov-report term --cov=pySMART -Werror - name: Generate coverage report if: ${{ matrix.os == 'ubuntu-latest' }}