diff options
author | Zach White <skullydazed@gmail.com> | 2021-05-10 11:18:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 11:18:44 -0700 |
commit | a3e7f3e7c58ee98596ead5c213f3a9ed8340cd80 (patch) | |
tree | ef0cb85205fad7562045f23caa8a16384e43bbb5 /lib/python/qmk/cli/pytest.py | |
parent | 66ed80ad3a0edecd9d7abbef71fc2a6e3e59b541 (diff) | |
download | qmk_firmware-a3e7f3e7c58ee98596ead5c213f3a9ed8340cd80.tar.gz qmk_firmware-a3e7f3e7c58ee98596ead5c213f3a9ed8340cd80.zip |
Improve our CI tests (#11476)
* add a test and dry-run to qmk generate-api
* add a dry-run to qmk pyformat
* Add a --dry-run to qmk cformat
* reverse the order of nose2 and flake8 tests
* run CI test against cformat and pyformat
* fix programming errors
* tweak job name
* fix argument
* refine the files we select
* fix stack trace in --ci
* make cformat exit clean
* fix c file extensions
* decouple CI from pyformat
* remove --ci arg
* make ci happy
* use the environment var instead
* change output to text
* fix log message
* replace tabs
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 5417a9cb3..50a1d70a4 100644 --- a/lib/python/qmk/cli/pytest.py +++ b/lib/python/qmk/cli/pytest.py | |||
@@ -11,6 +11,7 @@ from milc import cli | |||
11 | def pytest(cli): | 11 | def pytest(cli): |
12 | """Run several linting/testing commands. | 12 | """Run several linting/testing commands. |
13 | """ | 13 | """ |
14 | flake8 = subprocess.run(['flake8', 'lib/python', 'bin/qmk']) | ||
15 | nose2 = subprocess.run(['nose2', '-v']) | 14 | nose2 = subprocess.run(['nose2', '-v']) |
15 | flake8 = subprocess.run(['flake8', 'lib/python', 'bin/qmk']) | ||
16 | |||
16 | return flake8.returncode | nose2.returncode | 17 | return flake8.returncode | nose2.returncode |