Skip to content

Commit

Permalink
Install jupyter_client pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Aug 6, 2021
1 parent c52739f commit 318333b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/linux-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ jobs:
run: |
conda env update --file requirements/environment.yml
conda install entrypoints nest-asyncio
pip install https://github.com/jupyter/jupyter_client/archive/master.zip --no-deps
pip install jupyter_client --pre --no-deps --ignore-installed
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
- name: Run tests
shell: bash -l {0}
run: xvfb-run --auto-servernum pytest -x -vv --cov=qtconsole qtconsole
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ jobs:
run: |
conda env update --file requirements/environment.yml
conda install entrypoints nest-asyncio
pip install https://github.com/jupyter/jupyter_client/archive/master.zip --no-deps
pip install jupyter_client --pre --no-deps --ignore-installed
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
- name: Run tests
shell: bash -l {0}
run: pytest -x -vv --cov=qtconsole qtconsole
3 changes: 2 additions & 1 deletion .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ jobs:
run: |
conda env update --file requirements/environment.yml
conda install entrypoints nest-asyncio
pip install https://github.com/jupyter/jupyter_client/archive/master.zip --no-deps
pip install jupyter_client --pre --no-deps --ignore-installed
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
- name: Run tests
shell: bash -l {0}
run: pytest -x -vv --cov=qtconsole qtconsole

0 comments on commit 318333b

Please sign in to comment.