Fix lint
This commit is contained in:
parent
3f8b9fb1a5
commit
c4307c9f03
@ -106,7 +106,8 @@ def _generate_stylesheet():
|
|||||||
color: {{ color['%s'] }};
|
color: {{ color['%s'] }};
|
||||||
background-color: {{ color['%s'] }};
|
background-color: {{ color['%s'] }};
|
||||||
}
|
}
|
||||||
""" % (flag, flag, flag, option.format('fg'), option.format('bg'))
|
""" % (flag, flag, flag, # flake8: disable=S001
|
||||||
|
option.format('fg'), option.format('bg'))
|
||||||
return stylesheet
|
return stylesheet
|
||||||
|
|
||||||
|
|
||||||
|
@ -78,8 +78,8 @@ class Line:
|
|||||||
def _render_log(data, threshold=100):
|
def _render_log(data, threshold=100):
|
||||||
"""Shorten the given log without -v and convert to a string."""
|
"""Shorten the given log without -v and convert to a string."""
|
||||||
data = [str(d) for d in data]
|
data = [str(d) for d in data]
|
||||||
is_exception = any('Traceback (most recent call last):' in line
|
is_exception = any('Traceback (most recent call last):' in line or
|
||||||
or 'Uncaught exception' in line for line in data)
|
'Uncaught exception' in line for line in data)
|
||||||
verbose = pytest.config.getoption('--verbose')
|
verbose = pytest.config.getoption('--verbose')
|
||||||
if len(data) > threshold and not verbose and not is_exception:
|
if len(data) > threshold and not verbose and not is_exception:
|
||||||
msg = '[{} lines suppressed, use -v to show]'.format(
|
msg = '[{} lines suppressed, use -v to show]'.format(
|
||||||
|
Loading…
Reference in New Issue
Block a user