buildkite-test_collector 1.1.3 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +5 -5
- data/lib/buildkite/test_collector/ci.rb +3 -1
- data/lib/buildkite/test_collector/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 457b9dff2d6567d8be85f8a3e120500b04ef33aa93b9a1fa971c781cc8ff9471
|
4
|
+
data.tar.gz: 85a55ce20a129628d2379f73a62da0e29cef6cae0359987b986e23ce71a3ed86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d3f6a44bcb2743e2389b1ae8fc15dfce3721aec0f161cbc147843c6759a00eb29ffa16f917665f571cb7f62ec81c059a08e67323629196fa03cc73e601155ed
|
7
|
+
data.tar.gz: 9131b6ced770ab95c5a98c399cc45d108aab5bdc74d9f8e4c7a7ea9bb63d9d07126f0b93e2f759b2fad4b0b76761679ccc7bc580298c2586fbdbf33e14c8fe0d
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
buildkite-test_collector (1.
|
4
|
+
buildkite-test_collector (1.2.3)
|
5
5
|
activesupport (>= 5.2, < 8)
|
6
6
|
websocket (~> 1.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
activesupport (7.0.3)
|
11
|
+
activesupport (7.0.3.1)
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
13
|
i18n (>= 1.6, < 2)
|
14
14
|
minitest (>= 5.1)
|
15
15
|
tzinfo (~> 2.0)
|
16
16
|
concurrent-ruby (1.1.10)
|
17
17
|
diff-lcs (1.4.4)
|
18
|
-
i18n (1.
|
18
|
+
i18n (1.12.0)
|
19
19
|
concurrent-ruby (~> 1.0)
|
20
|
-
minitest (5.16.
|
20
|
+
minitest (5.16.3)
|
21
21
|
rake (13.0.6)
|
22
22
|
rspec (3.10.0)
|
23
23
|
rspec-core (~> 3.10.0)
|
@@ -32,7 +32,7 @@ GEM
|
|
32
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
33
33
|
rspec-support (~> 3.10.0)
|
34
34
|
rspec-support (3.10.3)
|
35
|
-
tzinfo (2.0.
|
35
|
+
tzinfo (2.0.5)
|
36
36
|
concurrent-ruby (~> 1.0)
|
37
37
|
websocket (1.2.9)
|
38
38
|
|
@@ -35,9 +35,11 @@ class Buildkite::TestCollector::CI
|
|
35
35
|
"job_id" => ENV["BUILDKITE_ANALYTICS_JOB_ID"],
|
36
36
|
"message" => ENV["BUILDKITE_ANALYTICS_MESSAGE"],
|
37
37
|
"debug" => ENV["BUILDKITE_ANALYTICS_DEBUG_ENABLED"],
|
38
|
+
"execution_name_prefix" => ENV["BUILDKITE_ANALYTICS_EXECUTION_NAME_PREFIX"],
|
39
|
+
"execution_name_suffix" => ENV["BUILDKITE_ANALYTICS_EXECUTION_NAME_SUFFIX"],
|
38
40
|
"version" => Buildkite::TestCollector::VERSION,
|
39
41
|
"collector" => Buildkite::TestCollector::NAME,
|
40
|
-
|
42
|
+
}.compact
|
41
43
|
end
|
42
44
|
|
43
45
|
def generic
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: buildkite-test_collector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Buildkite
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
135
|
- !ruby/object:Gem::Version
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
|
-
rubygems_version: 3.
|
138
|
+
rubygems_version: 3.3.3
|
139
139
|
signing_key:
|
140
140
|
specification_version: 4
|
141
141
|
summary: Track test executions and report to Buildkite Test Analytics
|