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 74db7b3e2..4b5132f13 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 | |||
4 | import qmk.path | 4 | import qmk.path |
5 | 5 | ||
6 | 6 | ||
7 | def test_keymap_onekey_pytest(): | 7 | def test_keymap_pytest_basic(): |
8 | path = qmk.path.keymap('handwired/onekey/pytest') | 8 | path = qmk.path.keymap('handwired/pytest/basic') |
9 | assert path.samefile('keyboards/handwired/onekey/keymaps') | 9 | assert path.samefile('keyboards/handwired/pytest/basic/keymaps') |
10 | 10 | ||
11 | 11 | ||
12 | def test_normpath(): | 12 | def test_normpath(): |