From 7d59f2b51aa770f08bb6da4b9f71c6ca4003263f Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Thu, 21 Dec 2023 13:39:55 -0500 Subject: [PATCH] ci: Remove ignore for deprecation warning --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 930bb1b..b14f2d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,14 +17,13 @@ jobs: - run: pip install -r requirements_dev.txt - name: Run checks and tests env: - # https://github.com/OpenDataServices/lib-cove/issues/112 - PYTHONWARNINGS: error,ignore::DeprecationWarning:libcove.lib.common + PYTHONWARNINGS: error shell: bash run: | ./manage.py migrate ./manage.py makemigrations --check --dry-run ./manage.py check --fail-level WARNING - pytest -W error -W ignore::DeprecationWarning:libcove.lib.common --cov cove_oc4ids --cov cove_project + pytest -W error --cov cove_oc4ids --cov cove_project - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: coveralls --service=github