Fixed E261 flake8 errors
at least two spaces before inline comment
This commit is contained in:
parent
b226454582
commit
8f3eb6dfc7
|
@ -69,7 +69,7 @@ class FastFilesCompleter:
|
||||||
|
|
||||||
def __call__(self, prefix, **kwargs):
|
def __call__(self, prefix, **kwargs):
|
||||||
"""only called on non option completions"""
|
"""only called on non option completions"""
|
||||||
if os.path.sep in prefix[1:]: #
|
if os.path.sep in prefix[1:]:
|
||||||
prefix_dir = len(os.path.dirname(prefix) + os.path.sep)
|
prefix_dir = len(os.path.dirname(prefix) + os.path.sep)
|
||||||
else:
|
else:
|
||||||
prefix_dir = 0
|
prefix_dir = 0
|
||||||
|
|
|
@ -839,7 +839,7 @@ class AssertionRewriter(ast.NodeVisitor):
|
||||||
new_kwargs.append(ast.keyword(keyword.arg, res))
|
new_kwargs.append(ast.keyword(keyword.arg, res))
|
||||||
if keyword.arg:
|
if keyword.arg:
|
||||||
arg_expls.append(keyword.arg + "=" + expl)
|
arg_expls.append(keyword.arg + "=" + expl)
|
||||||
else: ## **args have `arg` keywords with an .arg of None
|
else: # **args have `arg` keywords with an .arg of None
|
||||||
arg_expls.append("**" + expl)
|
arg_expls.append("**" + expl)
|
||||||
|
|
||||||
expl = "%s(%s)" % (func_expl, ', '.join(arg_expls))
|
expl = "%s(%s)" % (func_expl, ', '.join(arg_expls))
|
||||||
|
|
|
@ -836,7 +836,7 @@ class DropShorterLongHelpFormatter(argparse.HelpFormatter):
|
||||||
short_long[shortened] = xxoption
|
short_long[shortened] = xxoption
|
||||||
# now short_long has been filled out to the longest with dashes
|
# now short_long has been filled out to the longest with dashes
|
||||||
# **and** we keep the right option ordering from add_argument
|
# **and** we keep the right option ordering from add_argument
|
||||||
for option in options: #
|
for option in options:
|
||||||
if len(option) == 2 or option[2] == ' ':
|
if len(option) == 2 or option[2] == ' ':
|
||||||
return_list.append(option)
|
return_list.append(option)
|
||||||
if option[2:] == short_long.get(option.replace('-', '')):
|
if option[2:] == short_long.get(option.replace('-', '')):
|
||||||
|
|
|
@ -719,7 +719,7 @@ class TestDurations(object):
|
||||||
result = testdir.runpytest("--durations=0")
|
result = testdir.runpytest("--durations=0")
|
||||||
assert result.ret == 0
|
assert result.ret == 0
|
||||||
for x in "123":
|
for x in "123":
|
||||||
for y in 'call', : #'setup', 'call', 'teardown':
|
for y in 'call', : # 'setup', 'call', 'teardown':
|
||||||
for line in result.stdout.lines:
|
for line in result.stdout.lines:
|
||||||
if ("test_%s" % x) in line and y in line:
|
if ("test_%s" % x) in line and y in line:
|
||||||
break
|
break
|
||||||
|
|
|
@ -341,7 +341,7 @@ def test_excinfo_no_python_sourcecode(tmpdir):
|
||||||
excinfo = pytest.raises(ValueError,
|
excinfo = pytest.raises(ValueError,
|
||||||
template.render, h=h)
|
template.render, h=h)
|
||||||
for item in excinfo.traceback:
|
for item in excinfo.traceback:
|
||||||
print(item) #XXX: for some reason jinja.Template.render is printed in full
|
print(item) # XXX: for some reason jinja.Template.render is printed in full
|
||||||
item.source # shouldnt fail
|
item.source # shouldnt fail
|
||||||
if item.path.basename == 'test.txt':
|
if item.path.basename == 'test.txt':
|
||||||
assert str(item.source) == '{{ h()}}:'
|
assert str(item.source) == '{{ h()}}:'
|
||||||
|
|
|
@ -144,7 +144,7 @@ class TestWithFunctionIntegration(object):
|
||||||
|
|
||||||
assert entry_lines[0].startswith('! ')
|
assert entry_lines[0].startswith('! ')
|
||||||
if style != "native":
|
if style != "native":
|
||||||
assert os.path.basename(__file__)[:-9] in entry_lines[0] #.pyc/class
|
assert os.path.basename(__file__)[:-9] in entry_lines[0] # .pyc/class
|
||||||
assert entry_lines[-1][0] == ' '
|
assert entry_lines[-1][0] == ' '
|
||||||
assert 'ValueError' in entry
|
assert 'ValueError' in entry
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,7 @@ class SessionTests(object):
|
||||||
passed, skipped, failed = reprec.listoutcomes()
|
passed, skipped, failed = reprec.listoutcomes()
|
||||||
assert len(failed) == 1
|
assert len(failed) == 1
|
||||||
out = failed[0].longrepr.reprcrash.message
|
out = failed[0].longrepr.reprcrash.message
|
||||||
assert out.find("""[Exception("Ha Ha fooled you, I'm a broken repr().") raised in repr()]""") != -1 #'
|
assert out.find("""[Exception("Ha Ha fooled you, I'm a broken repr().") raised in repr()]""") != -1 # '
|
||||||
|
|
||||||
def test_skip_file_by_conftest(self, testdir):
|
def test_skip_file_by_conftest(self, testdir):
|
||||||
testdir.makepyfile(conftest="""
|
testdir.makepyfile(conftest="""
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -196,6 +196,6 @@ filterwarnings =
|
||||||
ignore:.*inspect.getargspec.*deprecated, use inspect.signature.*:DeprecationWarning
|
ignore:.*inspect.getargspec.*deprecated, use inspect.signature.*:DeprecationWarning
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
ignore = E261,E262,E265,E271,E272,E293,E301,E302,E303,E401,E402,E501,E701,E702,E704,E712,E731
|
ignore = E262,E265,E271,E272,E293,E301,E302,E303,E401,E402,E501,E701,E702,E704,E712,E731
|
||||||
max-line-length = 120
|
max-line-length = 120
|
||||||
exclude = _pytest/vendored_packages/pluggy.py
|
exclude = _pytest/vendored_packages/pluggy.py
|
||||||
|
|
Loading…
Reference in New Issue