diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index fb1c36d..57f7951 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -42,7 +42,7 @@ jobs: pip install -e . - name: Install Dependencies if Cache Missed - #if: steps.cache-pip.outputs.cache-hit != 'true' + if: steps.cache-pip.outputs.cache-hit != 'true' run: | cd triton_viz /usr/bin/python3.10 -m pip install -e . @@ -52,9 +52,9 @@ jobs: - name: Lint with pre-commit run: | cd triton_viz - python3.10 -m pre-commit run --all-files + pre-commit run --all-files - name: Test with pytest run: | cd triton_viz - python3.10 -m pytest Examples + pytest Examples