From 0e472580442ca9d7521283c7e57fbe7abc310840 Mon Sep 17 00:00:00 2001 From: David Butenhof Date: Fri, 6 Dec 2024 10:32:30 -0500 Subject: [PATCH] Fix coverage location (Gotta do this more cleanly...) --- .github/workflows/test.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1a81f8f..8f2ffd9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,10 +23,10 @@ jobs: run: | python -m pip install --upgrade pip pip install tox>=4.19 - # - name: Check for lint - # run: | - # cd backend - # tox -e format,isort,lint + - name: Check for lint + run: | + cd backend + - tox -e format,isort,lint - name: Run unit tests run: | cd backend @@ -35,6 +35,6 @@ jobs: uses: actions/upload-artifact@v4 with: name: Coverage for ${{ github.event.head_commit.id }} - path: .tox/unit/tmp/coverage.db + path: backend/.tox/unit/tmp/coverage.db if-no-files-found: warn retention-days: 30