diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebb786e7ff..711635d7a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -177,12 +177,12 @@ jobs: - name: Test LLaMA compile speed run: PYTHONPATH="." METAL=1 python3 test/external/external_test_speed_llama.py #- name: Run dtype test - # run: DEBUG=4 METAL=1 python -m pytest test/test_dtype.py + # run: DEBUG=4 METAL=1 python -m pytest -n=auto test/test_dtype.py # dtype test has issues on test_half_to_int8 - name: Run metal ops test - run: DEBUG=2 METAL=1 python -m pytest test/test_ops.py + run: DEBUG=2 METAL=1 python -m pytest -n=auto test/test_ops.py - name: Run JIT test - run: DEBUG=2 METAL=1 python -m pytest test/test_jit.py + run: DEBUG=2 METAL=1 python -m pytest -n=auto test/test_jit.py - name: Check Device.DEFAULT run: WEBGPU=1 python -c "from tinygrad.lazy import Device; assert Device.DEFAULT == 'WEBGPU', Device.DEFAULT" #- name: Run webgpu pytest