gitlab-qa 11.1.0 → 11.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8096dd0f8bbb920768cdba226589b8fff443c277c03795ebdb7281b1fa0b243e
4
- data.tar.gz: 376b71befea84be9b722cc53e8f3929382781fd5c47b1a29c7f5540117417fb0
3
+ metadata.gz: f149a0acdc7935d6ac974d2066893c8808e90b00d87724ef6d30d49e178d15f7
4
+ data.tar.gz: e1ce732a493a516a56a0a8619b25bdf9bbbdf5f82a72f22c5cb4aceb41d6132c
5
5
  SHA512:
6
- metadata.gz: 8ebb0fc14b72801c83a462b08cbea11f05fffa6366dd8ddbc07838d31d052f65bad914b88acecec1d2528981188603da215712894f4c0c8f2f71b932fe206dfa
7
- data.tar.gz: f707dc6915ac54490314c5ef89805bcde649990cbbfff9151360a3341d30c3820034c65afdaecaf52df58cf986c00005b5974fb526a4dfaebb6f9c6e81bb9b36
6
+ metadata.gz: c63ed67e40c20357b9d5aff7e6bd4df1d52ec7b127d6b552ec552a1ea2ed4d95d4d5e2c9882b2b0336a3e28353b0569af0536907ef324a8a1c7ce62cf5ce1cb8
7
+ data.tar.gz: efbc1e81e7802484575d84b7015c2062bed563771298767bc7826952b6e2fdf5dc27476ac1f817f72dc92ca928052855a3eff363ea6be455418cd500c8568930
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-qa (11.1.0)
4
+ gitlab-qa (11.2.0)
5
5
  activesupport (~> 6.1)
6
6
  gitlab (~> 4.19)
7
7
  http (~> 5.0)
@@ -20,11 +20,14 @@ module Gitlab
20
20
  @volumes = {}
21
21
  @additional_hosts = []
22
22
  @default_volumes = { '/var/run/docker.sock' => '/var/run/docker.sock' }
23
+
24
+ if Runtime::Env.qa_rspec_report_path.present? # rubocop:disable Style/IfUnlessModifier
25
+ @default_volumes[Runtime::Env.qa_rspec_report_path] = File.join(Docker::Volumes::QA_CONTAINER_WORKDIR, 'rspec')
26
+ end
27
+
23
28
  return if Runtime::Env.qa_knapsack_report_path.blank?
24
29
 
25
- @default_volumes[Runtime::Env.qa_knapsack_report_path] = File.join(
26
- Docker::Volumes::QA_CONTAINER_WORKDIR, 'knapsack'
27
- )
30
+ @default_volumes[Runtime::Env.qa_knapsack_report_path] = File.join(Docker::Volumes::QA_CONTAINER_WORKDIR, 'knapsack')
28
31
  end
29
32
 
30
33
  def perform
@@ -84,6 +84,9 @@ module Gitlab
84
84
  'KNAPSACK_TEST_DIR' => :knapsack_test_dir,
85
85
  'QA_KNAPSACK_REPORT_GCS_CREDENTIALS' => :qa_knapsack_report_gcs_credentials,
86
86
  'QA_KNAPSACK_REPORT_PATH' => :qa_knapsack_report_path,
87
+ 'QA_RSPEC_REPORT_PATH' => :qa_rspec_report_path,
88
+ 'RSPEC_FAST_QUARANTINE_PATH' => :rspec_fast_quarantine_path,
89
+ 'RSPEC_SKIPPED_TESTS_REPORT_PATH' => :skipped_tests_report_path,
87
90
  'CI' => :ci,
88
91
  'CI_JOB_NAME' => :ci_job_name,
89
92
  'CI_JOB_URL' => :ci_job_url,
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gitlab
4
4
  module QA
5
- VERSION = '11.1.0'
5
+ VERSION = '11.2.0'
6
6
  end
7
7
  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: 11.1.0
4
+ version: 11.2.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: 2023-06-02 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control