gitlab-qa 7.8.1 → 7.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d5db8c8b0acf394172a0def237d3049c42c04a811204589d6052fb3fda32eb2
4
- data.tar.gz: ae97cccc20dce22ce593a1d5a9690d6375b68fcd8ca1d2c4f854803c92dc17d2
3
+ metadata.gz: 810415c165fae1c9b410bf57284a5535ccdef3ab45df9832cf222554dd4db3dd
4
+ data.tar.gz: 2d0d33f6d0adb101292f6696868793dbfaf749150114a7e65d84a94ba05f06c0
5
5
  SHA512:
6
- metadata.gz: 9f13f3e88a045994996a2664e0efedc7dadac3ac53e7cd52b0338cf95b33224bd28d92dbe1909dd0ba66f60b4de1b41dd407c1fd1604b72b295c9368a8526710
7
- data.tar.gz: aed74598a8cb77c86822ceb2dc457641e4092aa764dba0bbcb3cd281d4a85abe329a8ecda6670e325655afd0470730b9e7699f5be5b0517dec66866f7adcca04
6
+ metadata.gz: fe0d8face8f36b1c923ad115d28d75c5ecdb0d6621c70f7826fd3dfe3da8b5848b4726709b307046d56638943fa6fa020b287d5459a8af9082c97ff237d712d2
7
+ data.tar.gz: 050fd0d3de3e41e0f8a8243892e0aae0a52ad7c716d29a23cde2ec7655986110550f5d22d46276b8d94f45f93e015d843411a7f9c1e8136a2012a4f6cfa22587
@@ -74,6 +74,10 @@ All environment variables used by GitLab QA should be defined in [`lib/gitlab/qa
74
74
  | `QA_SLOW_CONNECTION_THROUGHPUT_KBPS` | `32` | The maximum throughput (in kbps) of the simulated slow connection. | No|
75
75
  | `QA_SKIP_PULL` | `false` | Set to `true` to skip pulling docker images (e.g., to use one you built locally). | No|
76
76
  | `QA_GENERATE_ALLURE_REPORT` | `false` | When running on CI, set to `true` to generate allure reports | No|
77
+ | `QA_EXPORT_TEST_METRICS` | `true` | When running on CI, set to `true` to export test metrics to influxdb | No|
78
+ | `QA_INFLUXDB_URL` |- | Influxdb url for test metrics reporting | No|
79
+ | `QA_INFLUXDB_TOKEN` |- | Influxdb token for test metrics reporting | No|
80
+ | `QA_RUN_TYPE` |- | QA run type like `staging-full`, `canary`, `production` etc. Used in test metrics reporting | No|
77
81
  | `GITHUB_USERNAME` |- | Username for authenticating with GitHub. | No|
78
82
  | `GITHUB_PASSWORD` |- | Password for authenticating with GitHub. | No|
79
83
  | `GITLAB_QA_LOOP_RUNNER_MINUTES` | `1` | Minutes to run and repeat a spec while using the '--loop' option; default value is 1 minute. | No|
@@ -16,6 +16,25 @@ module Gitlab
16
16
  'QA_REMOTE_GRID_ACCESS_KEY' => :remote_grid_access_key,
17
17
  'QA_REMOTE_GRID_PROTOCOL' => :remote_grid_protocol,
18
18
  'QA_BROWSER' => :browser,
19
+ 'QA_ADDITIONAL_REPOSITORY_STORAGE' => :qa_additional_repository_storage,
20
+ 'QA_PRAEFECT_REPOSITORY_STORAGE' => :qa_praefect_repository_storage,
21
+ 'QA_GITALY_NON_CLUSTER_STORAGE' => :qa_gitaly_non_cluster_storage,
22
+ 'QA_COOKIES' => :qa_cookie,
23
+ 'QA_DEBUG' => :qa_debug,
24
+ 'QA_DEFAULT_BRANCH' => :qa_default_branch,
25
+ 'QA_LOG_PATH' => :qa_log_path,
26
+ 'QA_CAN_TEST_ADMIN_FEATURES' => :qa_can_test_admin_features,
27
+ 'QA_CAN_TEST_GIT_PROTOCOL_V2' => :qa_can_test_git_protocol_v2,
28
+ 'QA_CAN_TEST_PRAEFECT' => :qa_can_test_praefect,
29
+ 'QA_DISABLE_RSPEC_RETRY' => :qa_disable_rspec_retry,
30
+ 'QA_SIMULATE_SLOW_CONNECTION' => :qa_simulate_slow_connection,
31
+ 'QA_SLOW_CONNECTION_LATENCY_MS' => :qa_slow_connection_latency_ms,
32
+ 'QA_SLOW_CONNECTION_THROUGHPUT_KBPS' => :qa_slow_connection_throughput_kbps,
33
+ 'QA_GENERATE_ALLURE_REPORT' => :generate_allure_report,
34
+ 'QA_EXPORT_TEST_METRICS' => :qa_export_test_metrics,
35
+ 'QA_INFLUXDB_URL' => :qa_influxdb_url,
36
+ 'QA_INFLUXDB_TOKEN' => :qa_influxdb_token,
37
+ 'QA_RUN_TYPE' => :qa_run_type,
19
38
  'GITLAB_API_BASE' => :api_base,
20
39
  'GITLAB_ADMIN_USERNAME' => :admin_username,
21
40
  'GITLAB_ADMIN_PASSWORD' => :admin_password,
@@ -40,21 +59,6 @@ module Gitlab
40
59
  'CLOUDSDK_CORE_PROJECT' => :cloudsdk_core_project,
41
60
  'GCLOUD_REGION' => :gcloud_region,
42
61
  'SIGNUP_DISABLED' => :signup_disabled,
43
- 'QA_ADDITIONAL_REPOSITORY_STORAGE' => :qa_additional_repository_storage,
44
- 'QA_PRAEFECT_REPOSITORY_STORAGE' => :qa_praefect_repository_storage,
45
- 'QA_GITALY_NON_CLUSTER_STORAGE' => :qa_gitaly_non_cluster_storage,
46
- 'QA_COOKIES' => :qa_cookie,
47
- 'QA_DEBUG' => :qa_debug,
48
- 'QA_DEFAULT_BRANCH' => :qa_default_branch,
49
- 'QA_LOG_PATH' => :qa_log_path,
50
- 'QA_CAN_TEST_ADMIN_FEATURES' => :qa_can_test_admin_features,
51
- 'QA_CAN_TEST_GIT_PROTOCOL_V2' => :qa_can_test_git_protocol_v2,
52
- 'QA_CAN_TEST_PRAEFECT' => :qa_can_test_praefect,
53
- 'QA_DISABLE_RSPEC_RETRY' => :qa_disable_rspec_retry,
54
- 'QA_SIMULATE_SLOW_CONNECTION' => :qa_simulate_slow_connection,
55
- 'QA_SLOW_CONNECTION_LATENCY_MS' => :qa_slow_connection_latency_ms,
56
- 'QA_SLOW_CONNECTION_THROUGHPUT_KBPS' => :qa_slow_connection_throughput_kbps,
57
- 'QA_GENERATE_ALLURE_REPORT' => :generate_allure_report,
58
62
  'GITLAB_QA_USERNAME_1' => :gitlab_qa_username_1,
59
63
  'GITLAB_QA_PASSWORD_1' => :gitlab_qa_password_1,
60
64
  'GITLAB_QA_USERNAME_2' => :gitlab_qa_username_2,
@@ -1,5 +1,5 @@
1
1
  module Gitlab
2
2
  module QA
3
- VERSION = '7.8.1'.freeze
3
+ VERSION = '7.8.2'.freeze
4
4
  end
5
5
  end
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.8.1
4
+ version: 7.8.2
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-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control