From 8b7432a8ca480cd70daa15c16e3f8a4b8f0b65bc Mon Sep 17 00:00:00 2001 From: Tom Close Date: Fri, 20 Sep 2024 17:51:33 +1000 Subject: [PATCH] added no-warn mypy ignores to ci --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index c14dde1..2e75cc1 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -45,7 +45,7 @@ jobs: - name: Install Package run: python3 -m pip install -e .[test] -e ./extras[test] - name: MyPy - run: mypy --install-types --non-interactive . + run: mypy --install-types --non-interactive --no-warn-unused-ignores . - name: Pytest run: pytest -vvs --cov fileformats --cov-config .coveragerc --cov-report xml . - name: Upload coverage to Codecov