From 582f59b9d96b07852835c2e4ac7d3dea4d8e52e0 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Thu, 26 Sep 2024 15:10:02 -0400 Subject: [PATCH] move mypy config into config, and be specific with ignores --- .github/workflows/benchmark.yml | 2 +- mypy.ini | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 8d9b2029c..7110562d8 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -65,7 +65,7 @@ jobs: - name: python mypy run: | - mypy --ignore-missing-imports tests + mypy tests - name: python mypy stubtest shell: bash diff --git a/mypy.ini b/mypy.ini index 0529a8267..9a3de1aa3 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,5 +1,8 @@ [mypy] +[mypy-blspy.*] +ignore_missing_imports = True + [mypy-clvm.*] ignore_missing_imports = True