From 8699258d7fd68a4a476b2b2f4be2126657ed6f2a Mon Sep 17 00:00:00 2001 From: Fangchen Li Date: Wed, 18 Oct 2023 12:10:19 -0700 Subject: [PATCH] fix config --- .github/workflows/typing.yaml | 2 +- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typing.yaml b/.github/workflows/typing.yaml index 8fffe1e20b..19c0e87b04 100644 --- a/.github/workflows/typing.yaml +++ b/.github/workflows/typing.yaml @@ -23,7 +23,6 @@ on: jobs: typing-check: runs-on: ubuntu-latest - continue-on-error: true concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true @@ -45,5 +44,6 @@ jobs: pip install -e .[dev] - name: Run MyPy + continue-on-error: true run: | mypy --install-types diff --git a/pyproject.toml b/pyproject.toml index 90b54fbfe2..089b262a52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,9 +108,12 @@ Source = "https://github.com/nebari-dev/nebari" nebari = "nebari.__main__:main" [tool.mypy] -python_version = "3.8" warn_return_any = true warn_unused_configs = true +files = [ + "src/_nebari", + "src/nebari", +] exclude = [ "src/_nebari/stages/kubernetes_services/template" # skip traitlets configuration files ]