diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e12d61383..a0917c7b6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -23,6 +23,7 @@ jobs: run: | python -m pip install --upgrade pip pip install -e .[test] + pip install mypy - name: Lint with pycodestyle run: | @@ -31,3 +32,7 @@ jobs: - name: Test with pytest run: | pytest test + - name: Run Mypy but allow failures + run: | + mypy --show-error-codes --disable-error-code misc tableauserverclient + continue-on-error: true