Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build workflow on CI #6369

Merged
merged 7 commits into from
Apr 20, 2022
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
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