diff options
author | QMK Bot <hello@qmk.fm> | 2021-05-10 18:19:15 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-05-10 18:19:15 +0000 |
commit | 911b45ce3bcc2cf4c7e12ccf8df7da9621173e32 (patch) | |
tree | 1e01136ad436175dc74f9502e63dfeba21364380 /lib/python/qmk/cli/pytest.py | |
parent | cfc6e4bfac6b677b2f1249552c9e95d063f9d459 (diff) | |
parent | a3e7f3e7c58ee98596ead5c213f3a9ed8340cd80 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/cli/pytest.py')
-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 5417a9cb34..50a1d70a4f 100644 --- a/lib/python/qmk/cli/pytest.py +++ b/lib/python/qmk/cli/pytest.py @@ -11,6 +11,7 @@ from milc import cli def pytest(cli): """Run several linting/testing commands. """ - flake8 = subprocess.run(['flake8', 'lib/python', 'bin/qmk']) nose2 = subprocess.run(['nose2', '-v']) + flake8 = subprocess.run(['flake8', 'lib/python', 'bin/qmk']) + return flake8.returncode | nose2.returncode |