summaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/pytest.py
blob: 14613e1d962eee48ae1d8cb3e9687f107fbc5ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""QMK Python Unit Tests

QMK script to run unit and integration tests against our python code.
"""
import sys
from milc import cli


@cli.subcommand('QMK Python Unit Tests')
def pytest(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(argv=['nose2', '-v'])