ci-queue 0.53.0 → 0.55.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: e6b0d4731f188b996f4fe00ba834175bbb297c8a73c2cf76d7b1586f9b4b5f27
4
- data.tar.gz: 39f06f76eefaf43ac5f3bd19220a42e93c3cedf0517da115569862288338bc83
3
+ metadata.gz: a4c15b3d93bd34da203ba0646f7ac9a55bc81062cb173554c4aeb8ce2fbffde4
4
+ data.tar.gz: 805a374332f9351520e018449fcda5dfd574228879ce7efb8d4f6210e0893bdb
5
5
  SHA512:
6
- metadata.gz: c4fe6eb4407a5d53fc31633e977ba662edcabf7c3d122fb4e92acdea4e668ce9552e1c9a70c4961bd3c4a538d91dc6ae5c2954560545069f7ce7ddca9c756e5a
7
- data.tar.gz: 6f98c8690553f900aa28144cd876ce04b2c93e280bee986d78c01608161d95bb9835fba054aa9a646339a29bcc5e415879baef9c10da895198dd7330ca6c27ba
6
+ metadata.gz: f3676d0f75d1e9419d1c5b556574d6e4759b4cdd6694f208683dfc805f0baf8f3348e32630d5f020d59d5ac9c6db6163a41a775112d38f47989bc497ab775a56
7
+ data.tar.gz: efa3123ec814cd8a51d22a60f59e05f74c4ec18e99c5203c5e846df8b7d168dfcc4846632c21d9e695f6948670980a447f18f688001fde1e4254236af23e1b9c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ci-queue (0.53.0)
4
+ ci-queue (0.55.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -27,6 +27,10 @@ module CI
27
27
  Static.new([config.failing_test], config).populate(@all_tests)
28
28
  end
29
29
 
30
+ def failing_test_present?
31
+ @all_tests.find { |t| t.id == config.failing_test }
32
+ end
33
+
30
34
  def candidates
31
35
  Static.new(first_half + [config.failing_test], config).populate(@all_tests)
32
36
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module CI
4
4
  module Queue
5
- VERSION = '0.53.0'
5
+ VERSION = '0.55.0'
6
6
  DEV_SCRIPTS_ROOT = ::File.expand_path('../../../../../redis', __FILE__)
7
7
  RELEASE_SCRIPTS_ROOT = ::File.expand_path('../redis', __FILE__)
8
8
  end
@@ -189,6 +189,13 @@ module Minitest
189
189
  populate_queue
190
190
 
191
191
  step("Testing the failing test in isolation")
192
+ unless queue.failing_test_present?
193
+ puts reopen_previous_step
194
+ puts red("The failing test does not exist.")
195
+ File.write('log/test_order.log', "")
196
+ exit! 1
197
+ end
198
+
192
199
  unless run_tests_in_fork(queue.failing_test)
193
200
  puts reopen_previous_step
194
201
  puts red("The test fail when ran alone, no need to bisect.")
@@ -266,6 +266,11 @@ module Minitest
266
266
  reopen_previous_step
267
267
  puts red("The heartbeat process died. This worker is exiting early.")
268
268
  exit!(41)
269
+ rescue => error
270
+ reopen_previous_step
271
+ puts red("This worker exited because of an uncaught application error:")
272
+ puts red("#{error.class}: #{error.message}")
273
+ exit!(42)
269
274
  end
270
275
  end
271
276
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ci-queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean Boussier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-10 00:00:00.000000000 Z
11
+ date: 2024-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -242,7 +242,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
242
242
  - !ruby/object:Gem::Version
243
243
  version: '0'
244
244
  requirements: []
245
- rubygems_version: 3.5.10
245
+ rubygems_version: 3.5.11
246
246
  signing_key:
247
247
  specification_version: 4
248
248
  summary: Distribute tests over many workers using a queue