Skip to content

Commit

Permalink
Fixup python tests for missing via keymaps.
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc committed Aug 25, 2024
1 parent 9976d0f commit 5741eb7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/python/qmk/tests/test_cli_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,21 +118,18 @@ def test_list_keymaps_kb_only():
result = check_subcommand('list-keymaps', '-kb', 'contra')
check_returncode(result)
assert 'default' in result.stdout
assert 'via' in result.stdout


def test_list_keymaps_vendor_kb():
result = check_subcommand('list-keymaps', '-kb', 'ai03/lunar')
check_returncode(result)
assert 'default' in result.stdout
assert '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' in result.stdout
assert 'via' in result.stdout


def test_list_keymaps_no_keyboard_found():
Expand Down

0 comments on commit 5741eb7

Please sign in to comment.