diff --git a/dev/breeze/doc/images/output_testing.svg b/dev/breeze/doc/images/output_testing.svg index 228a97056c9..c85e5a60979 100644 --- a/dev/breeze/doc/images/output_testing.svg +++ b/dev/breeze/doc/images/output_testing.svg @@ -133,7 +133,7 @@ ╭─ Testing ────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ tests               Run the specified unit tests. This is a low level testing command that allows you to run       various kind of tests subset with a number of options. You can also use dedicated commands     -suchus db_tests, non_db_tests, integration_tests for more opinionated test suite execution.    +such as db_tests, non_db_tests, integration_tests for more opinionated test suite execution.   integration-tests   Run the specified integration tests.                                                           helm-tests          Run Helm chart tests.                                                                          docker-compose-testsRun docker-compose tests.                                                                      @@ -142,7 +142,7 @@ db-tests    Run all (default) or specified DB-bound unit tests. This is a dedicated command that only runs DB      tests and it runs them in parallel via splitting tests by test types into separate containers with     separate database started for each container.                                                          -non-db-testsRun all (default) or specified Non-DB unit tests. This is a dedicated command that onlyruns Non-DB     +non-db-testsRun all (default) or specified Non-DB unit tests. This is a dedicated command that only runs Non-DB    tests and it runs them in parallel via pytest-xdist in single container, with `none` backend set.      ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ diff --git a/dev/breeze/doc/images/output_testing.txt b/dev/breeze/doc/images/output_testing.txt index 3f7450936ba..5f088aae9e1 100644 --- a/dev/breeze/doc/images/output_testing.txt +++ b/dev/breeze/doc/images/output_testing.txt @@ -1 +1 @@ -d81f2195fbceabe4fc7d17bc3b83c5b1 +1447b50a7f4c843b01e92358a6b2e072 diff --git a/dev/breeze/doc/images/output_testing_non-db-tests.svg b/dev/breeze/doc/images/output_testing_non-db-tests.svg index 28fc44c0283..da43621dd69 100644 --- a/dev/breeze/doc/images/output_testing_non-db-tests.svg +++ b/dev/breeze/doc/images/output_testing_non-db-tests.svg @@ -369,7 +369,7 @@ Usage:breeze testing non-db-tests[OPTIONS] -Run all (default) or specified Non-DB unit tests. This is a dedicated command that onlyruns Non-DB tests and it runs  +Run all (default) or specified Non-DB unit tests. This is a dedicated command that only runs Non-DB tests and it runs  them in parallel via pytest-xdist in single container, with `none` backend set. ╭─ Select test types to run ───────────────────────────────────────────────────────────────────────────────────────────╮ diff --git a/dev/breeze/doc/images/output_testing_non-db-tests.txt b/dev/breeze/doc/images/output_testing_non-db-tests.txt index 8be059e5511..1080b5a3777 100644 --- a/dev/breeze/doc/images/output_testing_non-db-tests.txt +++ b/dev/breeze/doc/images/output_testing_non-db-tests.txt @@ -1 +1 @@ -3120758ec7ae00c88305cca093595aca +2cc222da8b9f31b93b527220b76b48a2 diff --git a/dev/breeze/doc/images/output_testing_tests.svg b/dev/breeze/doc/images/output_testing_tests.svg index a5da2b4d53f..c20e2ef16b2 100644 --- a/dev/breeze/doc/images/output_testing_tests.svg +++ b/dev/breeze/doc/images/output_testing_tests.svg @@ -457,7 +457,7 @@ Usage:breeze testing tests[OPTIONS] [EXTRA_PYTEST_ARGS]... Run the specified unit tests. This is a low level testing command that allows you to run various kind of tests subset  -with a number of options. You can also use dedicated commands suchus db_tests, non_db_tests, integration_tests for  +with a number of options. You can also use dedicated commands such as db_tests, non_db_tests, integration_tests for  more opinionated test suite execution. ╭─ Select test types to run (tests can also be selected by command args individually) ─────────────────────────────────╮ diff --git a/dev/breeze/doc/images/output_testing_tests.txt b/dev/breeze/doc/images/output_testing_tests.txt index 7e33718d66c..d19f6cf5abd 100644 --- a/dev/breeze/doc/images/output_testing_tests.txt +++ b/dev/breeze/doc/images/output_testing_tests.txt @@ -1 +1 @@ -2be847f8a1f4e2b80c6da1e4433203aa +15002aa129ce25039921f800fb1cf744 diff --git a/dev/breeze/src/airflow_breeze/commands/testing_commands.py b/dev/breeze/src/airflow_breeze/commands/testing_commands.py index 61b260bea09..c3bb4e91932 100644 --- a/dev/breeze/src/airflow_breeze/commands/testing_commands.py +++ b/dev/breeze/src/airflow_breeze/commands/testing_commands.py @@ -499,8 +499,8 @@ def _verify_parallelism_parameters( @group_for_testing.command( name="tests", help="Run the specified unit tests. This is a low level testing command that allows you to run " - "various kind of tests subset with a number of options. You can also use dedicated commands such" - "us db_tests, non_db_tests, integration_tests for more opinionated test suite execution.", + "various kind of tests subset with a number of options. You can also use dedicated commands such " + "as db_tests, non_db_tests, integration_tests for more opinionated test suite execution.", context_settings=dict( ignore_unknown_options=True, allow_extra_args=True, @@ -624,7 +624,7 @@ def command_for_db_tests(**kwargs): @group_for_testing.command( name="non-db-tests", - help="Run all (default) or specified Non-DB unit tests. This is a dedicated command that only" + help="Run all (default) or specified Non-DB unit tests. This is a dedicated command that only " "runs Non-DB tests and it runs them in parallel via pytest-xdist in single container, " "with `none` backend set.", context_settings=dict(