diff options
| author | Nick Brassel <nick@tzarc.org> | 2024-08-26 09:57:35 +1000 |
|---|---|---|
| committer | Nick Brassel <nick@tzarc.org> | 2024-08-26 09:57:35 +1000 |
| commit | 5741eb7b10ecc7da4453424004fd291ed0573e4d (patch) | |
| tree | 40026340f0d524a6006f18f01ef988e15d271075 /lib/python/qmk/tests/test_cli_commands.py | |
| parent | 9976d0f54775d63f913157e69026dd5c55f22282 (diff) | |
Fixup python tests for missing `via` keymaps.
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, 0 insertions, 3 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index 2b3d6f4049..4c322e0c9d 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
| @@ -118,21 +118,18 @@ def test_list_keymaps_kb_only(): | |||
| 118 | result = check_subcommand('list-keymaps', '-kb', 'contra') | 118 | result = check_subcommand('list-keymaps', '-kb', 'contra') |
| 119 | check_returncode(result) | 119 | check_returncode(result) |
| 120 | assert 'default' in result.stdout | 120 | assert 'default' in result.stdout |
| 121 | assert 'via' in result.stdout | ||
| 122 | 121 | ||
| 123 | 122 | ||
| 124 | def test_list_keymaps_vendor_kb(): | 123 | def test_list_keymaps_vendor_kb(): |
| 125 | result = check_subcommand('list-keymaps', '-kb', 'ai03/lunar') | 124 | result = check_subcommand('list-keymaps', '-kb', 'ai03/lunar') |
| 126 | check_returncode(result) | 125 | check_returncode(result) |
| 127 | assert 'default' in result.stdout | 126 | assert 'default' in result.stdout |
| 128 | assert 'via' in result.stdout | ||
| 129 | 127 | ||
| 130 | 128 | ||
| 131 | def test_list_keymaps_vendor_kb_rev(): | 129 | def test_list_keymaps_vendor_kb_rev(): |
| 132 | result = check_subcommand('list-keymaps', '-kb', 'kbdfans/kbd67/mkiirgb/v2') | 130 | result = check_subcommand('list-keymaps', '-kb', 'kbdfans/kbd67/mkiirgb/v2') |
| 133 | check_returncode(result) | 131 | check_returncode(result) |
| 134 | assert 'default' in result.stdout | 132 | assert 'default' in result.stdout |
| 135 | assert 'via' in result.stdout | ||
| 136 | 133 | ||
| 137 | 134 | ||
| 138 | def test_list_keymaps_no_keyboard_found(): | 135 | def test_list_keymaps_no_keyboard_found(): |
