diff options
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index 85d4d91af..dcab8bdae 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
@@ -13,6 +13,9 @@ def test_cformat(): | |||
13 | def test_compile(): | 13 | def test_compile(): |
14 | assert check_subcommand('compile', '-kb', 'handwired/onekey/pytest', '-km', 'default').returncode == 0 | 14 | assert check_subcommand('compile', '-kb', 'handwired/onekey/pytest', '-km', 'default').returncode == 0 |
15 | 15 | ||
16 | def test_flash(): | ||
17 | assert check_subcommand('flash', '-b').returncode == 1 | ||
18 | assert check_subcommand('flash').returncode == 1 | ||
16 | 19 | ||
17 | def test_config(): | 20 | def test_config(): |
18 | result = check_subcommand('config') | 21 | result = check_subcommand('config') |