diff options
author | QMK Bot <hello@qmk.fm> | 2022-02-22 18:32:43 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-02-22 18:32:43 +0000 |
commit | bd01e1cee8b5050ae62a7ed2597eac95c22627bf (patch) | |
tree | 8ff6569baa3c568bc22a062dc8c17f8c9c3f924c /lib/python/qmk | |
parent | a58a95f1f5c80fc493d12505d397f0e88f76ce9a (diff) | |
parent | 8aec20c0da9481c5294b216346231a98570d1626 (diff) | |
download | qmk_firmware-bd01e1cee8b5050ae62a7ed2597eac95c22627bf.tar.gz qmk_firmware-bd01e1cee8b5050ae62a7ed2597eac95c22627bf.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk')
-rw-r--r-- | lib/python/qmk/cli/pytest.py | 3 |
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 |