summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-02-22 18:32:43 +0000
committerQMK Bot <hello@qmk.fm>2022-02-22 18:32:43 +0000
commitbd01e1cee8b5050ae62a7ed2597eac95c22627bf (patch)
tree8ff6569baa3c568bc22a062dc8c17f8c9c3f924c /lib
parenta58a95f1f5c80fc493d12505d397f0e88f76ce9a (diff)
parent8aec20c0da9481c5294b216346231a98570d1626 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/cli/pytest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/pytest.py b/lib/python/qmk/cli/pytest.py
index 2e4a0a9f00..b7b17f0e9d 100644
--- a/lib/python/qmk/cli/pytest.py
+++ b/lib/python/qmk/cli/pytest.py
@@ -12,7 +12,8 @@ from milc import cli
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