Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Run the tests on pypy
if: ${{ startsWith(matrix.python-version, 'pypy') }}
run: |
hatch run cov:nowarn -s || hatch run test:nowarn -s --lf
hatch run cov:nowarn -s || hatch -v run test:nowarn -s --lf
- name: Run the tests
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
timeout-minutes: 15
run: |
hatch run cov:test -s || hatch run test:test -s --lf
hatch run cov:test -s || hatch -v run test:test -s --lf
- uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1

coverage:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
dependency_type: minimum
- name: Run the unit tests
run: |
hatch run test:nowarn || hatch run test:nowarn --lf
hatch run test:nowarn || hatch -v run test:nowarn --lf

test_prereleases:
name: Test Prereleases
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Run the tests
run: |
export PIP_PRE=1
hatch run test:nowarn || hatch run test:nowarn --lf
hatch run test:nowarn || hatch -v run test:nowarn --lf

make_sdist:
name: Make SDist
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
"docutils>=0.20.1",
"html5lib>=1.1",
"nbconvert>=7.1",
"nbformat>=5.0.2",
"nbformat>=5.1",
"pytest >=7.0,<9",
"requests >=2.22",
]
Expand Down