gitlab-qa 7.2.1 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/what_tests_can_be_run.md +1 -0
- data/lib/gitlab/qa/runtime/env.rb +2 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e21cf41df3ce08ca8f471d140f99bb4fdfc81c03079ec99d365ef31a219a5eb
|
|
4
|
+
data.tar.gz: 24b85de9e9e754ea6240c7b7d03592f92a9862edc143a174f59dad4362504cc5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03d58938bb2d0462bf7d471ee0e2fa5bb20187d0925ac6b5a29f86a6416d832249f02207c67aa9b9f72f211e268eb246c825f6129040bd7c2423287f7feefcbf
|
|
7
|
+
data.tar.gz: d04ebe15f0844dcb7eaa960b4621c50d878d7cbc745558d49dd658ca8e95e881d4ac6ccc24b476ea5b37212107803fa90883c61bedd9d441bac520de03cf0f5c
|
|
@@ -86,6 +86,7 @@ All environment variables used by GitLab QA should be defined in [`lib/gitlab/qa
|
|
|
86
86
|
| `GITLAB_QA_USER_AGENT` |- | The browser user-agent to use instead of the default Chrome user-agent. | No|
|
|
87
87
|
| `GEO_FAILOVER` | `false` | Set to `true` when a Geo secondary site has been promoted to a Geo primary site. | No|
|
|
88
88
|
| `GITLAB_INITIAL_ROOT_PASSWORD` | `5iveL!fe` | Initial root password for Omnibus installations | No|
|
|
89
|
+
| `GENERATE_ALLURE_REPORT` | `false` | When running on CI, set to `true` to generate allure reports | No|
|
|
89
90
|
|
|
90
91
|
|
|
91
92
|
## [Supported Remote Grid environment variables](./running_against_remote_grid.md)
|
|
@@ -91,7 +91,8 @@ module Gitlab
|
|
|
91
91
|
'DEPLOY_VERSION' => :deploy_version,
|
|
92
92
|
'GITLAB_QA_USER_AGENT' => :gitlab_qa_user_agent,
|
|
93
93
|
'GEO_FAILOVER' => :geo_failover,
|
|
94
|
-
'GITLAB_INITIAL_ROOT_PASSWORD' => :initial_root_password
|
|
94
|
+
'GITLAB_INITIAL_ROOT_PASSWORD' => :initial_root_password,
|
|
95
|
+
'GENERATE_ALLURE_REPORT' => :generate_allure_report
|
|
95
96
|
}.freeze
|
|
96
97
|
|
|
97
98
|
ENV_VARIABLES.each do |env_name, method_name|
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-qa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitLab Quality
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-05-
|
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|