gitlab-qa 6.21.0 → 6.21.1
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 +15 -0
- data/lib/gitlab/qa/component/gitlab.rb +1 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +2 -3
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f8a36d980bf03f5cc9921cf6f53417c3af1af1d9302d715c94ea018dcd38a0a
|
|
4
|
+
data.tar.gz: 07e3a718fde1037351f7e29cf6fabb9d35f757c50117f308881fb9474ede00eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77847c2c836aedb6f8e84c7424d8b124b7387d3c23bc658cf87b1a588217d33b6f81bdee77cb3302cfc937f2768a426f4a39315a57f66330c5e221e8f225243e
|
|
7
|
+
data.tar.gz: 797673f38b45c0b209cd49388fddb04cad19d7fce1af3105ed173e72469ab39de04a98962de905de93653426cd67e1a65c858ada146366291ceb394b8e8be1ff
|
|
@@ -167,6 +167,21 @@ And the following would run all Create API tests as well as UI tests:
|
|
|
167
167
|
$ gitlab-qa Test::Instance::Image EE -- qa/specs/features/browser_ui/3_create qa/specs/features/api/3_create
|
|
168
168
|
```
|
|
169
169
|
|
|
170
|
+
### Running tests for transient bugs
|
|
171
|
+
|
|
172
|
+
A suite of tests have been written to test for [transient bugs](https://about.gitlab.com/handbook/engineering/quality/issue-triage/#transient-bugs).
|
|
173
|
+
Those tests are tagged `:transient` and therefore can be run via:
|
|
174
|
+
|
|
175
|
+
```shell
|
|
176
|
+
$ gitlab-qa Test::Instance::Image EE -- --tag transient
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
If you would like to run the transient bug tests against a specific GitLab instance such as your GDK, you can use the following command:
|
|
180
|
+
|
|
181
|
+
```shell
|
|
182
|
+
$ gitlab-qa Test::Instance::Any EE https://your.instance.gitlab -- --tag transient
|
|
183
|
+
```
|
|
184
|
+
|
|
170
185
|
## Examples
|
|
171
186
|
|
|
172
187
|
### `Test::Instance::Image CE|EE|<full image address>`
|
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: 6.21.
|
|
4
|
+
version: 6.21.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grzegorz Bizon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|
|
@@ -208,7 +208,6 @@ files:
|
|
|
208
208
|
- ".rspec"
|
|
209
209
|
- ".rubocop.yml"
|
|
210
210
|
- ".rubocop_todo.yml"
|
|
211
|
-
- ".travis.yml"
|
|
212
211
|
- CONTRIBUTING.md
|
|
213
212
|
- Gemfile
|
|
214
213
|
- LICENSE
|