Skip to content

Commit 0ce06df

Browse files
committed
Ensure that "nose" capture stdout by default.
1 parent f49a3dd commit 0ce06df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Test with nosetests
4747
run: |
4848
source $(poetry env info -p)/bin/activate
49-
python -W ignore -m nose -q -v --nocapture --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=$CI_PACKAGE $CI_PACKAGE
49+
python -W ignore -m nose -q -v --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=$CI_PACKAGE $CI_PACKAGE
5050
- name: Upload Coverage to coveralls.io
5151
if: matrix.python-version == '3.6' || matrix.python-version == '3.7'
5252
run: |
@@ -101,7 +101,7 @@ jobs:
101101
- name: Test with nosetests
102102
run: |
103103
call %CI_VIRTUAL_ENVIRONMENT%\scripts\activate
104-
python -W ignore -m nose -q -v --nocapture --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=%CI_PACKAGE% %CI_PACKAGE%
104+
python -W ignore -m nose -q -v --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=%CI_PACKAGE% %CI_PACKAGE%
105105
shell: cmd
106106
- name: Upload Coverage to coveralls.io
107107
if: matrix.python-version == '3.6' || matrix.python-version == '3.7'

0 commit comments

Comments
 (0)