aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-02-08 12:43:55 +0000
committerGitHub <noreply@github.com>2020-02-08 13:43:55 +0100
commit75e7018f72a716ca2809e337d524966c7c4137a8 (patch)
tree330c01e13d4ac74be8d00c80878428df5c403d15 /lib
parent8fe29f2784b1c14a75694a908b8a5116d9517b97 (diff)
downloadfirmware-75e7018f72a716ca2809e337d524966c7c4137a8.tar.gz
firmware-75e7018f72a716ca2809e337d524966c7c4137a8.tar.bz2
firmware-75e7018f72a716ca2809e337d524966c7c4137a8.zip
CI: Add workflow for CLI testing (#7357)
Create GitHub Actions cli test workflow and remove travis runs of 'qmk pytest'
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/tests/test_cli_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py
index 3f75cef3e..f1a92d9a3 100644
--- a/lib/python/qmk/tests/test_cli_commands.py
+++ b/lib/python/qmk/tests/test_cli_commands.py
@@ -30,7 +30,7 @@ def test_kle2json():
def test_doctor():
- result = check_subcommand('doctor')
+ result = check_subcommand('doctor', '-n')
assert result.returncode == 0
assert 'QMK Doctor is checking your environment.' in result.stderr
assert 'QMK is ready to go' in result.stderr