diff options
author | Rémy Coutable <remy@rymai.me> | 2019-03-28 10:40:18 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-03-28 11:47:22 +0100 |
commit | 1e3c09d8ef309979988a500df76a2c83bd1732ec (patch) | |
tree | 4f9bdcb7ac17b1b4d9fc993605371b1d4c75327b /doc | |
parent | ed99dafc33550958f50d6b1ecb61667f333e3efc (diff) | |
download | gitlab-ce-1e3c09d8ef309979988a500df76a2c83bd1732ec.tar.gz |
Document the branch naming conventions for QA-only changes
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development/testing_guide/end_to_end_tests.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/development/testing_guide/end_to_end_tests.md b/doc/development/testing_guide/end_to_end_tests.md index 9837ea515a3..51fe19c3d9e 100644 --- a/doc/development/testing_guide/end_to_end_tests.md +++ b/doc/development/testing_guide/end_to_end_tests.md @@ -7,6 +7,24 @@ as expected across the entire software stack and architecture, including integration of all micro-services and components that are supposed to work together. +## Branch naming + +If your contribution contains **only** changes under the +[`qa/` folder](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/qa), you can +speed up the CI process by following some branch naming conventions. You have +three choices: + +| Branch name | Valid example | +|:----------------------|:-----------------------------| +| Starting with `qa/` | `qa/new-oauth-login-test` | +| Starting with `qa-` | `qa-new-oauth-login-test` | +| Ending in `-qa` | `123-new-oauth-login-test-qa` | + +If your branch name matches any of the above, it will run only the QA-related +jobs. +If it does not, the whole application test suite will run (including QA-related +jobs). + ## How do we test GitLab? We use [Omnibus GitLab][omnibus-gitlab] to build GitLab packages and then we |