remove PYTHONPATH=. from mypy ci [pr] (#8578)

This commit is contained in:
qazal
2025-01-12 12:52:03 -05:00
committed by GitHub
parent cde18fddce
commit 2f71a00236

View File

@@ -230,7 +230,7 @@ jobs:
- name: Lint tinygrad with pylint
run: python -m pylint tinygrad/
- name: Run mypy
run: PYTHONPATH="." python -m mypy --strict-equality --lineprecision-report . && cat lineprecision.txt
run: python -m mypy --strict-equality --lineprecision-report . && cat lineprecision.txt
- name: Test README
run: awk '/```python/{flag=1;next}/```/{flag=0}flag' README.md > README.py && PYTHONPATH=. python README.py
- name: Run unit tests