From 0918cf343f7c2383607b82e92af60d9a985e6849 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Mon, 15 Jul 2024 13:21:17 -0400 Subject: [PATCH] cicd: remove mypy checks --- .github/workflows/checks.yaml | 4 ---- pyproject.toml | 6 +----- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index f0b06cdc..221abb46 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -58,7 +58,3 @@ jobs: - name: Check style run: python3 -m ruff check . && ruff format --check . - - - name: Check type correctness - if: ${{ always() }} - run: python3 -m mypy src/therapy/ diff --git a/pyproject.toml b/pyproject.toml index d4978060..8762809b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ etl = [ "rich" ] test = ["pytest", "pytest-cov", "pytest-mock"] -dev = ["pre-commit", "ruff==0.2.0", "lxml", "xmlformatter", "mypy", "types-pyyaml"] +dev = ["pre-commit", "ruff==0.2.0", "lxml", "xmlformatter", "types-pyyaml"] [project.urls] Homepage = "https://github.com/cancervariants/therapy-normalization" @@ -77,10 +77,6 @@ testpaths = ["tests"] [tool.coverage.run] branch = true -[tool.mypy] -plugins = "pydantic.mypy" -ignore_missing_imports = true - [tool.ruff] src = ["src"]