diff options
| author | Zach White <skullydazed@gmail.com> | 2021-03-24 09:26:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-24 09:26:38 -0700 |
| commit | 299008be36076343edadb7a36bf2fff820425ad1 (patch) | |
| tree | d47d2fddc54b329b4ddb3128ef070b4cdba776a4 /lib/python/qmk/tests | |
| parent | 723d9af04d610c4a2fcb8fcf39e8420c71ed4df0 (diff) | |
| download | qmk_firmware-299008be36076343edadb7a36bf2fff820425ad1.tar.gz qmk_firmware-299008be36076343edadb7a36bf2fff820425ad1.zip | |
Add support for qmk_configurator style aliases (#11954)
* Add support for qmk_configurator style aliases
* add the keyboard aliases to the api data
* add support for a keyboard metadata file
* make flake8 happy
Diffstat (limited to 'lib/python/qmk/tests')
| -rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index 82c42a20e..a97472e6b 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
| @@ -134,8 +134,8 @@ def test_list_keymaps_vendor_kb_rev(): | |||
| 134 | 134 | ||
| 135 | def test_list_keymaps_no_keyboard_found(): | 135 | def test_list_keymaps_no_keyboard_found(): |
| 136 | result = check_subcommand('list-keymaps', '-kb', 'asdfghjkl') | 136 | result = check_subcommand('list-keymaps', '-kb', 'asdfghjkl') |
| 137 | check_returncode(result, [1]) | 137 | check_returncode(result, [2]) |
| 138 | assert 'does not exist' in result.stdout | 138 | assert 'invalid keyboard_folder value' in result.stdout |
| 139 | 139 | ||
| 140 | 140 | ||
| 141 | def test_json2c(): | 141 | def test_json2c(): |
