Skip to content

Commit 4ef70c2

Browse files
committed
Test outstream
1 parent 966e0a4 commit 4ef70c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
139139
- name: Run the tests
140140
timeout-minutes: 15
141-
run: pytest -W default -vv || pytest --vv -W default --lf
141+
run: pytest -W default -vv -s -k test_outstream || pytest --vv -s -k test_outstream -W default --lf
142142

143143
test_miniumum_versions:
144144
name: Test Minimum Versions

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ api = "sphinx-apidoc -o docs/api -f -E ipykernel tests ipykernel/datapub.py ipyk
9292
features = ["test"]
9393
[tool.hatch.envs.test.scripts]
9494
list = "python -m pip freeze"
95-
test = "python -m pytest -vv {args}"
95+
test = "python -m pytest -vv -s -k test_outstream {args}"
9696
nowarn = "test -W default {args}"
9797

9898
[tool.hatch.envs.cov]
9999
features = ["test", "cov"]
100100
[tool.hatch.envs.cov.scripts]
101-
test = "python -m pytest -vv --cov ipykernel --cov-branch --cov-report term-missing:skip-covered {args}"
101+
test = "python -m pytest -vv -s -k test_outstream --cov ipykernel --cov-branch --cov-report term-missing:skip-covered {args}"
102102
nowarn = "test -W default {args}"
103103

104104
[[tool.hatch.envs.cov.matrix]]

0 commit comments

Comments
 (0)