Skip to content

Commit bb047b4

Browse files
committed
no capture on full install workflow
1 parent 13f4fae commit bb047b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
python -m venv test_install
7272
./test_install/bin/python -m pip install -U pip
7373
./test_install/bin/python -m pip install ".[test]"
74-
cd test_install
75-
./bin/pytest --pyargs jupyter_server
76-
cd ..
74+
pushd test_install
75+
./bin/pytest --pyargs jupyter_server --capture=no
76+
popd
7777
- name: Test the docs
7878
run: |
7979
cd docs

0 commit comments

Comments
 (0)