diff options
author | Joel Challis <git@zvecr.com> | 2022-09-19 01:35:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 01:35:46 +0100 |
commit | 20f142a7723b0362c0d936d600fb01c649cec951 (patch) | |
tree | 805ba79bb0b192b4aa47193bb994a7e2ad14068d /lib/python/qmk/tests | |
parent | 07936d37b68352747b4da4b15d345987f438263a (diff) |
Tidy up LAYOUT macro generation (#18262)
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 6 |
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 185abb5f21..c8c4e2f80c 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -288,12 +288,6 @@ def test_generate_version_h(): assert '#define QMK_VERSION' in result.stdout -def test_generate_layouts(): - result = check_subcommand('generate-layouts', '-kb', 'handwired/pytest/basic') - check_returncode(result) - assert '#define LAYOUT_custom(k0A) {' in result.stdout - - def test_format_json_keyboard(): result = check_subcommand('format-json', '--format', 'keyboard', 'lib/python/qmk/tests/minimal_info.json') check_returncode(result) |