diff options
author | Joel Challis <git@zvecr.com> | 2022-02-27 11:28:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-27 12:28:51 +0100 |
commit | e4a6afa369ca695be97dc3ba96fe129a1c24456e (patch) | |
tree | eccad47500dd145ec2070b3956ed7a5395f9bdcd /lib/python/qmk/tests | |
parent | 8f457ada3a253993106e63c18e01987a7957403e (diff) | |
download | qmk_firmware-e4a6afa369ca695be97dc3ba96fe129a1c24456e.tar.gz qmk_firmware-e4a6afa369ca695be97dc3ba96fe129a1c24456e.zip |
Rework generate-api CLI command to use .build directory (#16441)
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 54b143c64f..c379c92229 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -232,7 +232,7 @@ def test_clean(): def test_generate_api(): - result = check_subcommand('generate-api', '--dry-run') + result = check_subcommand('generate-api', '--dry-run', '--filter', 'handwired/pytest') check_returncode(result) |