From 2f71a00236a8758f49ce6fca45260fcc713c75c3 Mon Sep 17 00:00:00 2001 From: qazal <77887910+Qazalin@users.noreply.github.com> Date: Sun, 12 Jan 2025 12:52:03 -0500 Subject: [PATCH] remove PYTHONPATH=. from mypy ci [pr] (#8578) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f819890bde..596f219b64 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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