Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
include-hidden-files
  • Loading branch information
chelsea-lin committed Sep 4, 2024
commit 7f9b4cd45a11f75962cc8b7d43ca9631661bb260
7 changes: 4 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@ jobs:
python -m pip install nox
- name: Run unit tests
env:
COVERAGE_FILE: /tmp/.coverage-${{ matrix.python }}
COVERAGE_FILE: .coverage-${{ matrix.python }}
run: |
nox -s unit-${{ matrix.python }}
- name: Upload coverage results
uses: actions/upload-artifact@v4.3.5
uses: actions/upload-artifact@v4
with:
name: coverage-artifact-${{ matrix.python }}
path: /tmp/.coverage-${{ matrix.python }}
path: .coverage-${{ matrix.python }}
if-no-files-found: error
include-hidden-files: true

cover:
runs-on: ubuntu-latest
Expand Down