1
0
Fork 0

Remove FLIP_HALF layouts and move to data driven (#20588)

This commit is contained in:
Ryan 2023-04-30 01:51:45 +10:00 committed by GitHub
parent 03328ea7a8
commit 998a4d744e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 1920 additions and 2564 deletions

View file

@ -168,7 +168,7 @@ def test_json2c_wrong_json():
def test_json2c_no_json():
result = check_subcommand('json2c', 'keyboards/handwired/pytest/pytest.h')
result = check_subcommand('json2c', 'keyboards/handwired/pytest/config.h')
check_returncode(result, [1])
assert 'Invalid JSON encountered' in result.stdout
@ -188,7 +188,11 @@ def test_info_keyboard_render():
assert 'Keyboard Name: pytest' in result.stdout
assert 'Processor: atmega32u4' in result.stdout
assert 'Layouts:' in result.stdout
assert 'k0' in result.stdout
if is_windows:
assert '| |' in result.stdout
else:
assert '│ │' in result.stdout
def test_info_keymap_render():