diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f0aa122..059c572 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: @@ -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 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index f446cad..7ae0ed6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ]