2019-08-22 08:40:24 +02:00
|
|
|
"""QMK Python Unit Tests
|
|
|
|
|
|
|
|
QMK script to run unit and integration tests against our python code.
|
|
|
|
"""
|
2021-05-20 00:24:46 +02:00
|
|
|
from subprocess import DEVNULL
|
2019-11-20 23:54:18 +01:00
|
|
|
|
2019-08-22 08:40:24 +02:00
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
|
2019-11-27 21:27:06 +01:00
|
|
|
@cli.subcommand('QMK Python Unit Tests', hidden=False if cli.config.user.developer else True)
|
2019-09-22 22:25:33 +02:00
|
|
|
def pytest(cli):
|
2019-11-20 23:54:18 +01:00
|
|
|
"""Run several linting/testing commands.
|
2019-08-22 08:40:24 +02:00
|
|
|
"""
|
2021-05-20 00:24:46 +02:00
|
|
|
nose2 = cli.run(['nose2', '-v'], capture_output=False, stdin=DEVNULL)
|
2021-08-30 01:50:22 +02:00
|
|
|
flake8 = cli.run(['flake8', 'lib/python'], capture_output=False, stdin=DEVNULL)
|
2021-05-10 20:18:44 +02:00
|
|
|
|
2019-11-20 23:54:18 +01:00
|
|
|
return flake8.returncode | nose2.returncode
|