mypy onnx_parser (#11141)

This commit is contained in:
chenyu
2025-07-08 19:50:28 -04:00
committed by GitHub
parent a1b8f3e64f
commit 7ce9e45474
2 changed files with 15 additions and 10 deletions

View File

@@ -331,7 +331,9 @@ jobs:
- name: Lint tinygrad with pylint
run: python -m pylint tinygrad/
- name: Run mypy
run: python -m mypy --strict-equality --lineprecision-report . && cat lineprecision.txt
run: |
python -m mypy --strict-equality --lineprecision-report . && cat lineprecision.txt
python -m mypy --strict-equality extra/onnx_parser.py
unittest:
name: Unit Tests