Skip to content

Commit 62025bc

Browse files
committedSep 13, 2022
fix broken pytest_plugin in one of the CI tests
1 parent b6350b0 commit 62025bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- name: Run the tests on pypy and windows
7777
if: ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.os, 'windows') }}
7878
run: |
79-
python -m pytest -vv || python -m pytest -vv --lf
79+
python -m pytest --pyargs jupyter_client -vv || python -m pytest -vv --lf
8080
8181
- name: Code coverage
8282
run: codecov

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ test = [
6060
"pytest-asyncio>=0.18",
6161
"pytest-cov",
6262
"pytest-timeout",
63-
"jupyter_events>=0.5.0"
63+
"jupyter_events[test]"
6464
]
6565
doc = [
6666
"ipykernel",

0 commit comments

Comments
 (0)
Please sign in to comment.