Skip to content
Closed
Changes from all commits
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
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ jobs:
- name: Test the package
run: hatch run cov:test

- uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@main
with:
artifact_name: coverage-${{ matrix.python-version }}

- name: JavaScript tests
run: |
hatch run js_test
Expand All @@ -61,15 +65,13 @@ jobs:
jupyter server extension list 2>&1 | grep -ie "notebook.*enabled" -
python -m jupyterlab.browser_check

- uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1

coverage:
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/report-coverage@v1
- uses: jtpio/maintainer-tools/.github/actions/report-coverage@include-hidden-files-2
with:
fail_under: 78

Expand Down