forked from mirrors/qmk_userspace
Setup a python test framework
This commit is contained in:
parent
4d339b7b5d
commit
5b7a5b2a76
15 changed files with 130 additions and 11 deletions
18
lib/python/qmk/cli/nose2.py
Normal file
18
lib/python/qmk/cli/nose2.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
"""QMK Python Unit Tests
|
||||
|
||||
QMK script to run unit and integration tests against our python code.
|
||||
"""
|
||||
from milc import cli
|
||||
|
||||
|
||||
@cli.entrypoint('QMK Python Unit Tests')
|
||||
def main(cli):
|
||||
"""Use nose2 to run unittests
|
||||
"""
|
||||
try:
|
||||
import nose2
|
||||
except ImportError:
|
||||
cli.log.error('Could not import nose2! Please install it with {fg_cyan}pip3 install nose2')
|
||||
return False
|
||||
|
||||
nose2.discover()
|
Loading…
Add table
Add a link
Reference in a new issue