diff options
author | Zach White <skullydazed@gmail.com> | 2020-11-30 11:19:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 11:19:44 -0800 |
commit | 8724a70c4c4329f09b9cf6dbda4dbefaaf3a3ee9 (patch) | |
tree | 19959fcac0e855b7187ecff8e94824d8f05a4ed4 /lib/python/qmk/tests | |
parent | 485e4524f47f15d9581c1cd2619bbcd321380f68 (diff) | |
download | qmk_firmware-8724a70c4c4329f09b9cf6dbda4dbefaaf3a3ee9.tar.gz qmk_firmware-8724a70c4c4329f09b9cf6dbda4dbefaaf3a3ee9.zip |
Reduce travis load by replacing an exclusive grep with an inclusive grep (#10964)
* add -n to avoid compiling
* switch to an include rather than exclude strategy
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 2 |
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 dd0c572a7d..99ec596083 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -34,7 +34,7 @@ def test_compile(): def test_compile_json(): - result = check_subcommand('compile', '-kb', 'handwired/onekey/pytest', '-km', 'default_json') + result = check_subcommand('compile', '-kb', 'handwired/onekey/pytest', '-km', 'default_json', '-n') check_returncode(result) |