aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/nose2.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/cli/nose2.py')
-rw-r--r--lib/python/qmk/cli/nose2.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/python/qmk/cli/nose2.py b/lib/python/qmk/cli/nose2.py
deleted file mode 100644
index c6c9c67b3..000000000
--- a/lib/python/qmk/cli/nose2.py
+++ /dev/null
@@ -1,18 +0,0 @@
1"""QMK Python Unit Tests
2
3QMK script to run unit and integration tests against our python code.
4"""
5from milc import cli
6
7
8@cli.entrypoint('QMK Python Unit Tests')
9def 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()