summaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r--lib/python/qmk/tests/test_cli_commands.py18
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py
index 55e69175e6..01db8aa6ec 100644
--- a/lib/python/qmk/tests/test_cli_commands.py
+++ b/lib/python/qmk/tests/test_cli_commands.py
@@ -113,21 +113,25 @@ def test_list_keymaps_community():
def test_list_keymaps_kb_only():
+<<<<<<< HEAD
+ result = check_subcommand('list-keymaps', '-kb', 'moonlander')
+=======
result = check_subcommand('list-keymaps', '-kb', 'contra')
+>>>>>>> qmk/master
check_returncode(result)
- assert 'default' and 'via' in result.stdout
+ assert 'default' and 'oyrx' and 'webusb' in result.stdout
def test_list_keymaps_vendor_kb():
- result = check_subcommand('list-keymaps', '-kb', 'ai03/lunar')
+ result = check_subcommand('list-keymaps', '-kb', 'planck/ez')
check_returncode(result)
- assert 'default' and 'via' in result.stdout
+ assert 'default' and 'oryx' and 'webusb' in result.stdout
-def test_list_keymaps_vendor_kb_rev():
- result = check_subcommand('list-keymaps', '-kb', 'kbdfans/kbd67/mkiirgb/v2')
- check_returncode(result)
- assert 'default' and 'via' in result.stdout
+# def test_list_keymaps_vendor_kb_rev():
+# result = check_subcommand('list-keymaps', '-kb', 'kbdfans/kbd67/mkiirgb/v2')
+# check_returncode(result)
+# assert 'default' and 'via' in result.stdout
def test_list_keymaps_no_keyboard_found():