gitlab-qa 15.0.0 → 15.1.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/Gemfile.lock +1 -1
- data/docs/what_tests_can_be_run.md +0 -15
- data/lib/gitlab/qa/component/specs.rb +1 -4
- 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: d9c1a8a5212de159db63560b0720bc56a80eafa614752b6aa5c50c619d990146
|
|
4
|
+
data.tar.gz: 55a2a9d26196c89bfb83f0238aa6a76fd137eb06456dc62779a861ec931c0943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94536ad5d24d7b6458f71a9e946f19023cf0b50a2e7c635eb4b247e2ad4752742ab0ad98fbd6acb6765816f272dddfb48816e4dcdc02bafcfd6e489f5d581ea0
|
|
7
|
+
data.tar.gz: e5d22e187476ac8e602d89f95f7f10ef8e20e8923b2214bd6db18a441c92d2e6451ced796504443b34db92d58a022dab64a2e6054760923c3aeb7df8d1669564
|
data/Gemfile.lock
CHANGED
|
@@ -244,21 +244,6 @@ And the following would run all Create API tests as well as UI tests:
|
|
|
244
244
|
$ gitlab-qa Test::Instance::Image EE -- qa/specs/features/browser_ui/3_create qa/specs/features/api/3_create
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
-
### Running tests for transient bugs
|
|
248
|
-
|
|
249
|
-
A suite of tests have been written to test for [transient bugs](https://about.gitlab.com/handbook/engineering/quality/issue-triage/#transient-bugs).
|
|
250
|
-
Those tests are tagged `:transient` and therefore can be run via:
|
|
251
|
-
|
|
252
|
-
```shell
|
|
253
|
-
$ gitlab-qa Test::Instance::Image EE -- --tag transient
|
|
254
|
-
```
|
|
255
|
-
|
|
256
|
-
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:
|
|
257
|
-
|
|
258
|
-
```shell
|
|
259
|
-
$ gitlab-qa Test::Instance::Any EE https://your.instance.gitlab -- --tag transient
|
|
260
|
-
```
|
|
261
|
-
|
|
262
247
|
## Examples
|
|
263
248
|
|
|
264
249
|
### `Test::Instance::Image CE|EE|<full image address>`
|
|
@@ -35,10 +35,7 @@ module Gitlab
|
|
|
35
35
|
@volumes = { '/var/run/docker.sock' => '/var/run/docker.sock' }
|
|
36
36
|
@retry_failed_specs = Runtime::Env.retry_failed_specs?
|
|
37
37
|
|
|
38
|
-
include_optional_volumes(
|
|
39
|
-
Runtime::Env.qa_rspec_report_path => 'rspec',
|
|
40
|
-
Runtime::Env.qa_knapsack_report_path => 'knapsack'
|
|
41
|
-
)
|
|
38
|
+
include_optional_volumes(Runtime::Env.qa_rspec_report_path => 'rspec')
|
|
42
39
|
end
|
|
43
40
|
|
|
44
41
|
def perform
|
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: 15.
|
|
4
|
+
version: 15.1.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:
|
|
11
|
+
date: 2025-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|