From a2e552c9c83b445cf253d7f7e9bad156e742dbc5 Mon Sep 17 00:00:00 2001 From: Josh Fell <48934154+josh-fell@users.noreply.github.com> Date: Thu, 2 Jun 2022 09:41:55 -0400 Subject: [PATCH] Fix small typos in static code checks doc - Trivial typo fix in the command to run static checks on the last commit - Update "run all tests" to "run all checks" where applicable for consistency --- STATIC_CODE_CHECKS.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/STATIC_CODE_CHECKS.rst b/STATIC_CODE_CHECKS.rst index a6c5b259ec0cf..dccade808e425 100644 --- a/STATIC_CODE_CHECKS.rst +++ b/STATIC_CODE_CHECKS.rst @@ -413,23 +413,23 @@ Run the ``flake8`` check for the ``tests.core`` package with verbose output: breeze static-checks --type run-flake8 --file tests/core/* --verbose -Run all tests for the currently staged files: +Run all checks for the currently staged files: .. code-block:: bash breeze static-checks --type all -Run all tests for all files: +Run all checks for all files: .. code-block:: bash breeze static-checks --type all --all-files -Run all tests for last commit : +Run all checks for last commit : .. code-block:: bash - breeze static-checks -type all --last-commit + breeze static-checks --type all --last-commit Debugging pre-commit check scripts requiring image --------------------------------------------------