File tree 3 files changed +6
-4
lines changed 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 52
52
- env : TOXENV=pypy3-xdist
53
53
python : ' pypy3'
54
54
55
- - env : TOXENV=py35-xdist
56
- python : ' 3.5'
55
+ # Coverage for Python 3.5.{0,1} specific code, mostly typing related.
56
+ - env : TOXENV=py35 PYTEST_COVERAGE=1 PYTEST_ADDOPTS="-k test_raises_cyclic_reference"
57
+ python : ' 3.5.1'
58
+ dist : trusty
57
59
58
60
# Specialized factors for py37.
59
61
- env : TOXENV=py37-pluggymaster-xdist
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 ): # pragma: no cover
374
+ if sys .version_info < (3 , 5 , 2 ):
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 ): # pragma: no cover
169
+ if sys .version_info < (3 , 5 , 2 ):
170
170
del self
171
171
raise ValueError
172
172
You can’t perform that action at this time.
0 commit comments