LAZY and CLCACHE are defaults

This commit is contained in:
George Hotz
2022-07-04 13:09:15 -07:00
parent 425b0dcd58
commit 34f43ea10e
4 changed files with 13 additions and 9 deletions

View File

@@ -51,7 +51,7 @@ jobs:
- name: Install Dependencies
run: pip install -e '.[testing]'
- name: Run Pytest
run: python -m pytest -s -v
run: LAZY=0 python -m pytest -s -v
- name: Run Pytest (lazy)
run: LAZY=1 python -m pytest -s -v
@@ -71,7 +71,7 @@ jobs:
- name: Install Dependencies
run: pip install -e '.[testing]'
- name: Run Pytest
run: TORCH=1 python -m pytest -s -v
run: LAZY=0 TORCH=1 python -m pytest -s -v
- name: Run Pytest (lazy)
run: LAZY=1 TORCH=1 python -m pytest -s -v
@@ -97,7 +97,7 @@ jobs:
- name: Install Dependencies
run: pip install -e '.[gpu,testing]'
- name: Run Pytest
run: GPU=1 python -m pytest -s -v
run: LAZY=0 GPU=1 python -m pytest -s -v
- name: Run Pytest (lazy)
run: LAZY=1 GPU=1 python -m pytest -s -v