diff options
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r-- | lib/python/qmk/tests/.gitignore | 2 | ||||
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/qmk/tests/.gitignore b/lib/python/qmk/tests/.gitignore new file mode 100644 index 000000000..eeb6581b8 --- /dev/null +++ b/lib/python/qmk/tests/.gitignore | |||
@@ -0,0 +1,2 @@ | |||
1 | # Ignore generated info.json from pytest | ||
2 | info.json | ||
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index 68f8ed604..0b840b466 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
@@ -45,8 +45,9 @@ def test_config(): | |||
45 | 45 | ||
46 | 46 | ||
47 | def test_kle2json(): | 47 | def test_kle2json(): |
48 | result = check_subcommand('kle2json', 'kle.txt', '-f') | 48 | result = check_subcommand('kle2json', 'lib/python/qmk/tests/kle.txt', '-f') |
49 | check_returncode(result) | 49 | check_returncode(result) |
50 | assert 'Wrote out' in result.stdout | ||
50 | 51 | ||
51 | 52 | ||
52 | def test_doctor(): | 53 | def test_doctor(): |