diff options
| author | Akaash Suresh <casa.akaash@gmail.com> | 2020-02-22 22:57:19 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-22 20:57:19 -0800 |
| commit | b353028ea5e0ac7b69e7fed4f224c7cb07015ec9 (patch) | |
| tree | b090b1907dff0b47de08d24002e3bcf72f92f8f8 /lib/python/qmk/tests/test_cli_commands.py | |
| parent | eb9c2429c69cf034fb3938f0533d15457a2d7820 (diff) | |
New functionality for cformat (#7893)
Fixing complexity
remove lambda
PR review fixes #1
Removing unneccesary string substitution
Handle -a and specified files
Complexity rewrite, use pathlib
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
| -rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index bb77952faf..a2595eb788 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
| @@ -7,7 +7,8 @@ def check_subcommand(command, *args): | |||
| 7 | 7 | ||
| 8 | 8 | ||
| 9 | def test_cformat(): | 9 | def test_cformat(): |
| 10 | assert check_subcommand('cformat', 'tmk_core/common/keyboard.c').returncode == 0 | 10 | result = check_subcommand('cformat', 'quantum/matrix.c') |
| 11 | assert result.returncode == 0 | ||
| 11 | 12 | ||
| 12 | 13 | ||
| 13 | def test_compile(): | 14 | def test_compile(): |
