diff options
author | Joel Challis <git@zvecr.com> | 2021-01-05 00:52:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 00:52:31 +0000 |
commit | f03b10b6c1c9a5b0e07f7f78c6060610246b4a7f (patch) | |
tree | 7d9df975a5046b8d22b5f20694715287361f96a4 /lib/python/qmk/tests/test_qmk_path.py | |
parent | 810eafad121bda333c53490e2d8a29f3a83d9c19 (diff) | |
download | qmk_firmware-f03b10b6c1c9a5b0e07f7f78c6060610246b4a7f.tar.gz qmk_firmware-f03b10b6c1c9a5b0e07f7f78c6060610246b4a7f.zip |
Migrate python tests away from onekey (#11367)
* Migrate python tests away from onekey
* Add stub files to stop lint complaints
* Make all the pytest keymaps compile
Diffstat (limited to 'lib/python/qmk/tests/test_qmk_path.py')
-rw-r--r-- | lib/python/qmk/tests/test_qmk_path.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/qmk/tests/test_qmk_path.py b/lib/python/qmk/tests/test_qmk_path.py index 74db7b3e26..4b5132f13d 100644 --- a/lib/python/qmk/tests/test_qmk_path.py +++ b/lib/python/qmk/tests/test_qmk_path.py @@ -4,9 +4,9 @@ from pathlib import Path import qmk.path -def test_keymap_onekey_pytest(): - path = qmk.path.keymap('handwired/onekey/pytest') - assert path.samefile('keyboards/handwired/onekey/keymaps') +def test_keymap_pytest_basic(): + path = qmk.path.keymap('handwired/pytest/basic') + assert path.samefile('keyboards/handwired/pytest/basic/keymaps') def test_normpath(): |