pytest.py 526 B

1234567891011121314151617
  1. """QMK Python Unit Tests
  2. QMK script to run unit and integration tests against our python code.
  3. """
  4. from subprocess import DEVNULL
  5. from milc import cli
  6. @cli.subcommand('QMK Python Unit Tests', hidden=False if cli.config.user.developer else True)
  7. def pytest(cli):
  8. """Run several linting/testing commands.
  9. """
  10. nose2 = cli.run(['nose2', '-v'], capture_output=False, stdin=DEVNULL)
  11. flake8 = cli.run(['flake8', 'lib/python'], capture_output=False, stdin=DEVNULL)
  12. return flake8.returncode | nose2.returncode