From 737499cac234b1ea035e08706d17a5d74bf55549 Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Wed, 18 Sep 2024 19:04:52 +0200 Subject: [PATCH] fixup! TEMPORARY COMMIT - DO NOT MERGE --- .github/workflows/main.yml | 2 +- pyproject.toml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bf10fa5..94e6c60 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,7 +37,7 @@ jobs: run: uv run flake8 --ignore=E123,E231 fimfarchive tests - name: Check types - run: uv run mypy --ignore-missing-imports fimfarchive tests + run: uv run mypy - name: Run tests run: uv run pytest diff --git a/pyproject.toml b/pyproject.toml index 1f22c41..124f867 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,10 @@ dev-dependencies = [ [tool.uv.sources.jsonapi-client] git = "https://github.com/JockeTF/jsonapi-client.git" +[tool.mypy] +ignore_missing_imports = true +packages = ["fimfarchive", "tests"] + [tool.pytest.ini_options] testpaths = ["tests"]