gitlab-qa 4.19.2 → 4.19.3

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: 99244d7c485a38182d0ab56006b3e07c3e237434781f4ad7fa000540a907f8ec
4
- data.tar.gz: 21c4848cf6ac8da2ade47322b69e104b8b9996d9475dbfad4712c944b6470411
3
+ metadata.gz: 365a0ce68c65b067549f157ad77556b2a73acd68e8bcf80b9a1b71eaaf038131
4
+ data.tar.gz: 4d621dc1dd3acf0806b4aca7d48ee71666f987233d29a5cec9005c91c79b6601
5
5
  SHA512:
6
- metadata.gz: 1065f7d045c3b400925b5a539ac4dca4bddf5cf7352fbf0350e377cf450c3e5f52b08c1c1171da9f40f1dd9ef86ceec5d04d04f97b85cde35086ff331cb53388
7
- data.tar.gz: 12ea452c82e69d678d87b170d300e67eb89a2a6e14da578489b0f3c60d9ae25d22ded0ef1620645387935d7c8cae06698c8516425d2bb19529842a9199da16de
6
+ metadata.gz: 8476332ec379c56295af553b573f06273b03f6cf91f69a83d764bbd57c1e71ac9739ea429db9b8a9552a372a073111cedf45c4697158504685c9b36b6cbf7a40
7
+ data.tar.gz: b0853d070633351b9aa011c57e4e746e9639773fba1371bb4e2b731c1ae84cae3ae72afd56938f4e146d267d7c8720ba2418fc1951bae2ace2b4be5a1b22f8e1
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/gitlab-qa.svg)](https://rubygems.org/gems/gitlab-qa)
2
- [![build status](https://gitlab.com/gitlab-org/gitlab-qa/badges/master/build.svg)](https://gitlab.com/gitlab-org/gitlab-qa/pipelines)
2
+ [![build status](https://gitlab.com/gitlab-org/gitlab-qa/badges/master/pipeline.svg)](https://gitlab.com/gitlab-org/gitlab-qa/pipelines)
3
3
 
4
4
  # GitLab QA orchestrator
5
5
 
@@ -84,7 +84,13 @@ of tests.
84
84
 
85
85
  ## Documentation
86
86
 
87
- All the documentation can be found under [`docs/`](/docs/README.md).
87
+ - [Architecture](docs/architecture.md)
88
+ - [How it works](docs/how_it_works.md)
89
+ - [Release process](docs/release_process.md)
90
+ - [Run QA tests against your GDK setup](docs/run_qa_against_gdk.md)
91
+ - [Trainings](docs/trainings.md)
92
+ - [Waits](docs/waits.md)
93
+ - [What tests can be run?](docs/what_tests_can_be_run.md)
88
94
 
89
95
  ## How do we use it
90
96
 
data/docs/README.md CHANGED
@@ -1,8 +1 @@
1
1
  # GitLab QA Documentation
2
-
3
- - [Architecture](architecture.md)
4
- - [How it works](how_it_works.md)
5
- - [What tests can be run?](what_tests_can_be_run.md)
6
- - [Run QA tests against your GDK setup](run_qa_against_gdk.md)
7
- - [Trainings](trainings.md)
8
- - [Waits](waits.md)
@@ -22,7 +22,7 @@ module Gitlab
22
22
  when Net::HTTPSuccess
23
23
  response
24
24
  else
25
- raise InvalidResponseError.new(uri.to_s, response)
25
+ raise Support::InvalidResponseError.new(uri.to_s, response)
26
26
  end
27
27
  end
28
28
 
@@ -1,9 +1,15 @@
1
- class InvalidResponseError < StandardError
2
- attr_reader :response
1
+ module Gitlab
2
+ module QA
3
+ module Support
4
+ class InvalidResponseError < StandardError
5
+ attr_reader :response
3
6
 
4
- def initialize(address, response)
5
- @response = response
7
+ def initialize(address, response)
8
+ @response = response
6
9
 
7
- super "Invalid response received from #{address}"
10
+ super "Invalid response received from #{address}"
11
+ end
12
+ end
13
+ end
8
14
  end
9
15
  end
@@ -1,5 +1,5 @@
1
1
  module Gitlab
2
2
  module QA
3
- VERSION = '4.19.2'.freeze
3
+ VERSION = '4.19.3'.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: 4.19.2
4
+ version: 4.19.3
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-02-07 00:00:00.000000000 Z
11
+ date: 2020-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control