This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new fe706de1f7a Add testing instructions to the quick start guide for new
contributors (#63576)
fe706de1f7a is described below
commit fe706de1f7ad1e40789856dccf0ce75f342c5734
Author: Kalyan R <[email protected]>
AuthorDate: Sun Mar 15 03:00:41 2026 +0530
Add testing instructions to the quick start guide for new contributors
(#63576)
---
.../03a_contributors_quick_start_beginners.rst | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/contributing-docs/03a_contributors_quick_start_beginners.rst
b/contributing-docs/03a_contributors_quick_start_beginners.rst
index f0ffb29cb34..14ef7e82a4b 100644
--- a/contributing-docs/03a_contributors_quick_start_beginners.rst
+++ b/contributing-docs/03a_contributors_quick_start_beginners.rst
@@ -110,7 +110,19 @@ This flag enables configuration to load example DAGs when
starting Airflow, whic
prek --all-files
-6. **Commit & push**
+6. **Run tests**
+
+Run tests related to your change **before** pushing:
+
+.. code-block:: bash
+
+ # Example: run core tests
+ breeze testing core-tests
+
+Run ``breeze testing --help`` to see all available test groups.
+For more on testing, see the `Testing Guide <09_testing.rst>`_.
+
+7. **Commit & push**
.. code-block:: bash
@@ -118,7 +130,7 @@ This flag enables configuration to load example DAGs when
starting Airflow, whic
git commit -am "fix typo in README"
git push -u origin docs-typo
-7. **Open the PR** – GitHub shows a "Compare & pull request" button.
+8. **Open the PR** – GitHub shows a "Compare & pull request" button.
*Syncing your branch*