at master 761 B view raw
1"""QMK Python Unit Tests 2 3QMK script to run unit and integration tests against our python code. 4""" 5from subprocess import DEVNULL 6 7from milc import cli 8 9 10@cli.argument('-t', '--test', arg_only=True, action='append', default=[], help="Mapped to nose2 'testNames' positional argument - https://docs.nose2.io/en/latest/usage.html#specifying-tests-to-run") 11@cli.subcommand('QMK Python Unit Tests', hidden=False if cli.config.user.developer else True) 12def pytest(cli): 13 """Run several linting/testing commands. 14 """ 15 nose2 = cli.run(['nose2', '-v', '-t', 'lib/python', *cli.args.test], capture_output=False, stdin=DEVNULL) 16 flake8 = cli.run(['flake8', 'lib/python'], capture_output=False, stdin=DEVNULL) 17 18 return flake8.returncode | nose2.returncode