From 1f3905d68b151ffda8fd3a4b3fc38bd694859db5 Mon Sep 17 00:00:00 2001 From: Zach White Date: Sun, 7 Mar 2021 19:10:03 -0800 Subject: [PATCH] Begin the process of deprecating bin/qmk in favor of the global cli (#12109) * Begin the process of deprecating bin/qmk in favor of the global cli * Correctly set the qmk bin --- lib/python/qmk/tests/test_cli_commands.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index afdbc8142917..9b1df1b2ec26 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -8,11 +8,7 @@ def check_subcommand(command, *args): cmd = ['qmk', command, *args] - result = cli.run(cmd, stdin=DEVNULL, combined_output=True) return result - - -def check_subcommand_stdin(file_to_read, command, *args): """Pipe content of a file to a command and return output. """ with open(file_to_read, encoding='utf-8') as my_file: