Exclude app dependencies from mypy workflow (#18700)

Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com>
Co-authored-by: Carlos Mocholí <carlossmocholi@gmail.com>
This commit is contained in:
Adrian Wälchli 2023-10-03 09:22:00 -07:00 committed by GitHub
parent 4b7c8422cb
commit 9d9220c383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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