Skip to content

Commit

Permalink
Format code according to conventions (#16435)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot authored Feb 22, 2022
1 parent 5330d08 commit 8aec20c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/python/qmk/cli/pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
def pytest(cli):
"""Run several linting/testing commands.
"""
nose2 = cli.run(['nose2', '-v', '-t' 'lib/python', *cli.args.test], capture_output=False, stdin=DEVNULL)
nose2 = cli.run(['nose2', '-v', '-t'
'lib/python', *cli.args.test], capture_output=False, stdin=DEVNULL)
flake8 = cli.run(['flake8', 'lib/python'], capture_output=False, stdin=DEVNULL)

return flake8.returncode | nose2.returncode

0 comments on commit 8aec20c

Please sign in to comment.