From fdf5ffeb6c1c9fc6ca0482f403bd2cbb5452610d Mon Sep 17 00:00:00 2001 From: Tejas Ramesh <63494847+tejas3070@users.noreply.github.com> Date: Sat, 9 Mar 2024 01:13:08 -0500 Subject: [PATCH] Update python-app.yml (Test Cache#35) --- .github/workflows/python-app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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