diff options
author | skullY <skullydazed@gmail.com> | 2019-08-21 23:40:24 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-09-07 07:58:41 -0700 |
commit | 5b7a5b2a7629fbb667d23a55836dce3c6c46a203 (patch) | |
tree | b153a030844887422464c6c4f4833242b34a9314 /lib/python/qmk/cli/nose2.py | |
parent | 4d339b7b5d1ecc2320080798d7e07e2d43675578 (diff) | |
download | qmk_firmware-5b7a5b2a7629fbb667d23a55836dce3c6c46a203.tar.gz qmk_firmware-5b7a5b2a7629fbb667d23a55836dce3c6c46a203.zip |
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 000000000..c6c9c67b3 --- /dev/null +++ b/lib/python/qmk/cli/nose2.py | |||
@@ -0,0 +1,18 @@ | |||
1 | """QMK Python Unit Tests | ||
2 | |||
3 | QMK script to run unit and integration tests against our python code. | ||
4 | """ | ||
5 | from milc import cli | ||
6 | |||
7 | |||
8 | @cli.entrypoint('QMK Python Unit Tests') | ||
9 | def main(cli): | ||
10 | """Use nose2 to run unittests | ||
11 | """ | ||
12 | try: | ||
13 | import nose2 | ||
14 | except ImportError: | ||
15 | cli.log.error('Could not import nose2! Please install it with {fg_cyan}pip3 install nose2') | ||
16 | return False | ||
17 | |||
18 | nose2.discover() | ||