Skip to content

Commit

Permalink
Fix min dep test (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Apr 10, 2024
1 parent c1623d1 commit b7433fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit b7433fb

Please sign in to comment.