aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests/test_cli_commands.py
diff options
context:
space:
mode:
authorZach White <skullydazed@gmail.com>2021-05-16 11:06:57 -0700
committerGitHub <noreply@github.com>2021-05-16 11:06:57 -0700
commitde5c30a9bab0b1ebf97578931fad4ffe2ee00197 (patch)
tree184748319045a136f712458db909fab08e70796f /lib/python/qmk/tests/test_cli_commands.py
parent8761e973ec67f152211851a056e2c34e9e755e49 (diff)
downloadqmk_firmware-de5c30a9bab0b1ebf97578931fad4ffe2ee00197.tar.gz
qmk_firmware-de5c30a9bab0b1ebf97578931fad4ffe2ee00197.zip
Use milc.subcommand.config instead of qmk.cli.config (#12915)
* Use milc.subcommand.config instead * pyformat * remove the config test
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
-rw-r--r--lib/python/qmk/tests/test_cli_commands.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py
index d1f3a1811..6730f9c9f 100644
--- a/lib/python/qmk/tests/test_cli_commands.py
+++ b/lib/python/qmk/tests/test_cli_commands.py
@@ -62,12 +62,6 @@ def test_flash_bootloaders():
62 check_returncode(result, [1]) 62 check_returncode(result, [1])
63 63
64 64
65def test_config():
66 result = check_subcommand('config')
67 check_returncode(result)
68 assert 'general.color' in result.stdout
69
70
71def test_kle2json(): 65def test_kle2json():
72 result = check_subcommand('kle2json', 'lib/python/qmk/tests/kle.txt', '-f') 66 result = check_subcommand('kle2json', 'lib/python/qmk/tests/kle.txt', '-f')
73 check_returncode(result) 67 check_returncode(result)