From 1432934add47bdd00c9fcf28888d10aee0c86f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Eide?= Date: Wed, 18 Sep 2024 14:26:49 +0200 Subject: [PATCH] Fixes --- .github/workflows/test_everest_macos.yml | 3 --- .github/workflows/typing.yml | 2 +- .mypy.ini | 3 +++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_everest_macos.yml b/.github/workflows/test_everest_macos.yml index dc50bf8da19..d61f2d65935 100644 --- a/.github/workflows/test_everest_macos.yml +++ b/.github/workflows/test_everest_macos.yml @@ -7,9 +7,6 @@ on: branches: - main tags: "*" - paths: - - 'src/everest/**' - - 'tests/everest/**' concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/typing.yml b/.github/workflows/typing.yml index c2147a3163a..8c52e246fbd 100644 --- a/.github/workflows/typing.yml +++ b/.github/workflows/typing.yml @@ -46,4 +46,4 @@ jobs: - name: Run mypy everest run: | - mypy src/everest --exclude /src/ieverest/ + mypy src/everest diff --git a/.mypy.ini b/.mypy.ini index faa4cebe284..e643cabcc35 100644 --- a/.mypy.ini +++ b/.mypy.ini @@ -81,3 +81,6 @@ disable_error_code = dict-item, [mypy-tests.*] disable_error_code = no-untyped-def, no-untyped-call, typeddict-item, assignment + +[mypy-ieverest.*] +ignore_errors = True