Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
working-directory: api/library/python/iterm2
run: python -m pytest tests/ -v

- name: Run mypy
working-directory: api/library/python/iterm2
run: python -m mypy iterm2/

xcode-tests:
runs-on: macos-15

Expand Down
2 changes: 2 additions & 0 deletions api/library/python/iterm2/mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[mypy]
disable_error_code = import-not-found, import-untyped
2 changes: 2 additions & 0 deletions api/library/python/iterm2/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
pytest>=7.0.0
pytest-cov>=4.0.0
pytest-asyncio>=0.21.0
mypy>=1.0.0
types-protobuf