From 9d9220c383b899252afbf454cf32308cf5dadea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Tue, 3 Oct 2023 09:22:00 -0700 Subject: [PATCH] Exclude app dependencies from mypy workflow (#18700) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com> Co-authored-by: Carlos MocholĂ­ --- .github/workflows/code-checks.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index 4c5fc11c8b..de4a4af0c8 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -43,8 +43,9 @@ jobs: env: FREEZE_REQUIREMENTS: 1 run: | - pip install -e '.[all]' -r requirements/typing.txt + # TODO: investigate hanging installation with app sub-package + pip install -e '.[pytorch-all,fabric-all]' -r requirements/typing.txt pip list - name: Check typing - run: mypy + run: mypy --no-warn-unused-ignores