aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/pytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/cli/pytest.py')
-rw-r--r--lib/python/qmk/cli/pytest.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/pytest.py b/lib/python/qmk/cli/pytest.py
new file mode 100644
index 000000000..14613e1d9
--- /dev/null
+++ b/lib/python/qmk/cli/pytest.py
@@ -0,0 +1,20 @@
1"""QMK Python Unit Tests
2
3QMK script to run unit and integration tests against our python code.
4"""
5import sys
6from milc import cli
7
8
9@cli.subcommand('QMK Python Unit Tests')
10def pytest(cli):
11 """Use nose2 to run unittests
12 """
13 try:
14 import nose2
15
16 except ImportError:
17 cli.log.error('Could not import nose2! Please install it with {fg_cyan}pip3 install nose2')
18 return False
19
20 nose2.discover(argv=['nose2', '-v'])