diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index bacbf89..9cba2ba 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -22,4 +22,4 @@ jobs: run: | pip install -e '.[full,test]' -f https://download.pytorch.org/whl/cpu - name: Check type hints - run: mypy + run: mypy . diff --git a/pyproject.toml b/pyproject.toml index 7aa0518..cffa7b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -111,12 +111,6 @@ warn_redundant_casts = true warn_unused_configs = true warn_unused_ignores = true -# TODO: the goal is for this ignore list to be empty -[[tool.mypy.overrides]] -ignore_errors = true -# Run this command to generate this list of files -# mypy --no-error-summary 2>&1 | tr ':' ' ' | awk '{print $1}' | sort | uniq | sed 's/\.py//g; s|src/||g; s|\/|\.|g' | xargs -I {} echo '"{}",' - [tool.pytest.ini_options] addopts = [ "--capture=no",