File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 79
79
python : " 3.7"
80
80
os : ubuntu-latest
81
81
tox_env : " py37-lsof-numpy-oldattrs-pexpect-twisted"
82
+ verbose : " -vv"
82
83
- name : " ubuntu-py37-pluggy"
83
84
python : " 3.7"
84
85
os : ubuntu-latest
@@ -127,15 +128,15 @@ jobs:
127
128
128
129
- name : Test without coverage
129
130
if : " matrix.skip_coverage"
130
- run : " tox -e ${{ matrix.tox_env }}"
131
+ run : " tox -e ${{ matrix.tox_env }} -- ${{ matrix.verbose }} "
131
132
132
133
- name : Test with coverage
133
134
if : " ! matrix.skip_coverage"
134
135
env :
135
136
_PYTEST_TOX_COVERAGE_RUN : " coverage run -m"
136
137
COVERAGE_PROCESS_START : " .coveragerc"
137
138
_PYTEST_TOX_EXTRA_DEP : " coverage-enable-subprocess"
138
- run : " tox -e ${{ matrix.tox_env }}"
139
+ run : " tox -e ${{ matrix.tox_env }} -- ${{ matrix.verbose }} "
139
140
140
141
- name : Prepare coverage token
141
142
if : success() && !matrix.skip_coverage && ( github.repository == 'pytest-dev/pytest' || github.event_name == 'pull_request' )
Original file line number Diff line number Diff line change @@ -371,7 +371,7 @@ def getvalue(self) -> str:
371
371
return self .buffer .getvalue ().decode ("UTF-8" )
372
372
373
373
374
- if sys .version_info < (3 , 5 , 2 ):
374
+ if sys .version_info < (3 , 5 , 2 ): # pragma: no cover
375
375
376
376
def overload (f ): # noqa: F811
377
377
return f
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ def __call__(self):
166
166
# Early versions of Python 3.5 have some bug causing the
167
167
# __call__ frame to still refer to t even after everything
168
168
# is done. This makes the test pass for them.
169
- if sys .version_info < (3 , 5 , 2 ):
169
+ if sys .version_info < (3 , 5 , 2 ): # pragma: no cover
170
170
del self
171
171
raise ValueError
172
172
You can’t perform that action at this time.
0 commit comments