pyupgrade: Reformat with --py36-plus.
This includes mainly fixes of string literals using f-strings or .format(...), as well as unpacking of list comprehensions.
This commit is contained in:
parent
e27ac0ddbe
commit
9ce7c52a10
78 changed files with 356 additions and 389 deletions
|
@ -97,7 +97,7 @@ def main():
|
|||
|
||||
if options.pytest:
|
||||
excluded_bots = ["merels"]
|
||||
pytest_bots_to_test = sorted([bot for bot in bots_to_test if bot not in excluded_bots])
|
||||
pytest_bots_to_test = sorted(bot for bot in bots_to_test if bot not in excluded_bots)
|
||||
pytest_options = [
|
||||
"-s", # show output from tests; this hides the progress bar though
|
||||
"-x", # stop on first test failure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue