mypy cache breaks if you sometimes check untyped defs, no checking tests for now

This commit is contained in:
George Hotz
2023-02-27 09:57:33 -08:00
parent e74779f19d
commit c9252d38b2
2 changed files with 1 additions and 9 deletions

View File

@@ -40,9 +40,7 @@ jobs:
- name: Lint tinygrad with pylint
run: pylint tinygrad/
- name: Run mypy
run: |
mypy tinygrad/ --ignore-missing-imports --check-untyped-defs
mypy test/ --ignore-missing-imports
run: mypy tinygrad/ --ignore-missing-imports --check-untyped-defs
testcpu:
name: CPU Tests

View File

@@ -19,9 +19,3 @@ repos:
language: system
always_run: true
pass_filenames: false
- id: mypytest
name: mypytest
entry: mypy test/ --ignore-missing-imports
language: system
always_run: true
pass_filenames: false