Skip to content

Commit 549e32c

Browse files
committed
Run verbosely to try and see where are we skipping tests under test_pdb.py and test_unittest.py
1 parent ab3281e commit 549e32c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
_PYTEST_TOX_COVERAGE_RUN: "coverage run -m"
146146
COVERAGE_PROCESS_START: ".coveragerc"
147147
_PYTEST_TOX_EXTRA_DEP: "coverage-enable-subprocess"
148-
run: "tox -e ${{ matrix.tox_env }}"
148+
run: "tox -vv -e ${{ matrix.tox_env }}"
149149

150150
- name: Prepare coverage token
151151
if: (matrix.use_coverage && ( github.repository == 'pytest-dev/pytest' || github.event_name == 'pull_request' ))

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ before_script:
5757
export _PYTEST_TOX_COVERAGE_RUN="coverage run -m"
5858
export _PYTEST_TOX_EXTRA_DEP=coverage-enable-subprocess
5959
fi
60-
script: env COLUMNS=120 python -m tox
60+
script: env COLUMNS=120 python -m tox -vv
6161

6262
after_success:
6363
- |

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ envlist =
2121

2222
[testenv]
2323
commands =
24-
{env:_PYTEST_TOX_COVERAGE_RUN:} pytest {posargs:{env:_PYTEST_TOX_DEFAULT_POSARGS:}}
24+
{env:_PYTEST_TOX_COVERAGE_RUN:} pytest -v {posargs:{env:_PYTEST_TOX_DEFAULT_POSARGS:}}
2525
coverage: coverage combine
2626
coverage: coverage report
2727
passenv = USER USERNAME COVERAGE_* TRAVIS PYTEST_ADDOPTS

0 commit comments

Comments
 (0)