Skip to content

Commit

Permalink
Merge pull request #6369 from jtpio/fix-ci
Browse files Browse the repository at this point in the history
Fix build workflow on CI
  • Loading branch information
jtpio authored Apr 20, 2022
2 parents 60f1f01 + c5f24f7 commit 793dc95
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ jobs:

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
python_version: "3.10"

- name: Install the package
run: |
python -m pip install ".[test]""
python -m pip install ".[test]"
jlpm run build:test
- name: Unit tests
Expand All @@ -50,6 +52,7 @@ jobs:
pytest -vv || pytest -vv --lf
- name: Integration Tests
run: |
jupyter labextension list 2>&1 | grep -ie "@jupyter-notebook/lab-extension.*enabled.*ok" -
jupyter server extension list 2>&1 | grep -ie "notebook.*enabled" -
python -m jupyterlab.browser_check
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ python_requires = >=3.7
install_requires =
notebook_shim>=0.1,<0.2
jupyterlab>=4.0.0a23,<5
jupyterlab_server~=2.3
jupyter_server~=1.4
jupyterlab_server>=2.13,<3
jupyter_server>=1.16.0,<2
tornado>=6.1.0

[options.extras_require]
Expand All @@ -50,7 +50,7 @@ test =
pytest-console-scripts
ipykernel
pre-commit
jupyterlab_server[test]
jupyterlab_server[test]>=2.13,<3

[options.packages.find]
exclude =
Expand Down

0 comments on commit 793dc95

Please sign in to comment.