From 49f8240a82af6df4a89f5bbfe6f6c3110dc48cd7 Mon Sep 17 00:00:00 2001 From: Zach Sailer Date: Mon, 12 Sep 2022 11:57:46 -0700 Subject: [PATCH] fix broken pytest_plugin in one of the CI tests --- .github/workflows/main.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c3540ec8..13c3657ce 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -76,7 +76,7 @@ jobs: - name: Run the tests on pypy and windows if: ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.os, 'windows') }} run: | - python -m pytest -vv || python -m pytest -vv --lf + python -m pytest --pyargs jupyter_client -vv || python -m pytest -vv --lf - name: Code coverage run: codecov diff --git a/pyproject.toml b/pyproject.toml index 52734077d..c6ebfc584 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ test = [ "pytest-asyncio>=0.18", "pytest-cov", "pytest-timeout", - "jupyter_events>=0.5.0" + "jupyter_events[test]" ] doc = [ "ipykernel",