diff options
author | skullY <skullydazed@gmail.com> | 2019-08-21 23:40:24 -0700 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-09-26 10:08:39 +0900 |
commit | 50f3d2556d930eef28730c7d0e36112e0ca34c62 (patch) | |
tree | 000636b3833f101fd708d7cc588330346e505508 /lib/python/qmk/cli/nose2.py | |
parent | 4a5ec09f6112a1240c7874662ff2b4df0b572d7f (diff) |
Setup a python test framework
Diffstat (limited to 'lib/python/qmk/cli/nose2.py')
-rw-r--r-- | lib/python/qmk/cli/nose2.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/nose2.py b/lib/python/qmk/cli/nose2.py new file mode 100644 index 0000000000..c6c9c67b30 --- /dev/null +++ b/lib/python/qmk/cli/nose2.py @@ -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() |