gitlab-qa 5.7.0 → 5.8.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/.gitlab-ci.yml +2 -4
- data/docs/what_tests_can_be_run.md +2 -0
- data/lib/gitlab/qa/runtime/env.rb +3 -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: 07f33560e0e001e38be410b8e7c7f64d160944dc95bcdc17c99ddad79c70b6a1
|
|
4
|
+
data.tar.gz: 62c30bde8056b4ddecc9cc70c1b9437a3136d13c9b2eaa35a804ab584a871768
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d29db653628734fa25a478ae36dd65cf6c29d0067ac5fcc971465e2009c773b3402e69b1a7a1ba10aba10e16d4792b59e46610353bb7255169620235d533258
|
|
7
|
+
data.tar.gz: 5ec4d1b5f8076ac006a5ea81546f20423cc7759d73ed914e2692b043097edf660d328ffcf81e887e7a810789456e1caed940cfc362333920a996833a07b8352a
|
data/.gitlab-ci.yml
CHANGED
|
@@ -800,12 +800,11 @@ ce:praefect-quarantine:
|
|
|
800
800
|
- .high-capacity
|
|
801
801
|
- .ce-qa
|
|
802
802
|
- .quarantine
|
|
803
|
-
- .knapsack-variables
|
|
804
803
|
- .rspec-report-opts
|
|
805
|
-
parallel: 5
|
|
806
804
|
variables:
|
|
807
805
|
QA_SCENARIO: "Test::Integration::Praefect"
|
|
808
806
|
QA_CAN_TEST_PRAEFECT: "true"
|
|
807
|
+
QA_RSPEC_TAGS: "--tag quarantine --tag ~orchestrated"
|
|
809
808
|
|
|
810
809
|
ee:praefect:
|
|
811
810
|
extends:
|
|
@@ -824,13 +823,12 @@ ee:praefect-quarantine:
|
|
|
824
823
|
- .test
|
|
825
824
|
- .high-capacity
|
|
826
825
|
- .ee-qa
|
|
827
|
-
- .knapsack-variables
|
|
828
826
|
- .quarantine
|
|
829
827
|
- .rspec-report-opts
|
|
830
|
-
parallel: 5
|
|
831
828
|
variables:
|
|
832
829
|
QA_SCENARIO: "Test::Integration::Praefect"
|
|
833
830
|
QA_CAN_TEST_PRAEFECT: "true"
|
|
831
|
+
QA_RSPEC_TAGS: "--tag quarantine --tag ~orchestrated"
|
|
834
832
|
|
|
835
833
|
ce:smtp:
|
|
836
834
|
extends:
|
|
@@ -78,6 +78,8 @@ For more details on the internals, please read the
|
|
|
78
78
|
* `GITHUB_PASSWORD` - Password for authenticating with GitHub.
|
|
79
79
|
* `GITLAB_QA_LOOP_RUNNER_MINUTES` - Minutes to run and repeat a spec while using the '--loop' option; default value is 1 minute.
|
|
80
80
|
* `CI_SERVER_PERSONAL_ACCESS_TOKEN` - Personal access token of the server that is running the CI pipeline. This is used for pulling CI_RUNNER information in certain tests.
|
|
81
|
+
* `GEO_MAX_FILE_REPLICATION_TIME` - maximum time that a test will wait for a replicated file to appear on a Geo secondary node (default 120 seconds)
|
|
82
|
+
* `GEO_MAX_DB_REPLICATION_TIME` - maximum time that a test will wait for database data to appear on a Geo secondary node (default 120 seconds)
|
|
81
83
|
|
|
82
84
|
## [Supported Remote Grid environment variables](./running_against_remote_grid.md)
|
|
83
85
|
|
|
@@ -71,7 +71,9 @@ module Gitlab
|
|
|
71
71
|
'SLACK_QA_CHANNEL' => :slack_qa_channel,
|
|
72
72
|
'CI_SLACK_WEBHOOK_URL' => :ci_slack_webhook_url,
|
|
73
73
|
'SLACK_ICON_EMOJI' => :slack_icon_emoji,
|
|
74
|
-
'GITLAB_QA_FORMLESS_LOGIN_TOKEN' => :gitlab_qa_formless_login_token
|
|
74
|
+
'GITLAB_QA_FORMLESS_LOGIN_TOKEN' => :gitlab_qa_formless_login_token,
|
|
75
|
+
'GEO_MAX_FILE_REPLICATION_TIME' => :geo_max_file_replication_time,
|
|
76
|
+
'GEO_MAX_DB_REPLICATION_TIME' => :geo_max_db_replication_time
|
|
75
77
|
}.freeze
|
|
76
78
|
|
|
77
79
|
ENV_VARIABLES.each_value do |accessor|
|
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: 5.
|
|
4
|
+
version: 5.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grzegorz Bizon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04-
|
|
11
|
+
date: 2020-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|