ci-queue 0.20.2 → 0.20.7

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: 8102503b55cb4135eeb185d6e7e2aa222c2ce3f0c94fb6292d349ac994c7cfa9
4
- data.tar.gz: 77295aa7996d840c209019c108c4ededcbdbff3d62918b7e727319ad02f16e34
3
+ metadata.gz: 869f4269443defdf645936cf4b6cf969dd821263b9a96b4de71da7bbbbd98152
4
+ data.tar.gz: 3aa8a19f472ed869a88f35b3c124a01700fc1acf235617c5f78dcb67232f91c8
5
5
  SHA512:
6
- metadata.gz: d0f60b68573a8f61ef047caaeb85cd76be62051a2f953004aa89b12679eed9558af83545f49f8da4293bfc88526ea11f61bddfcbfc4a70e28d5c706418696665
7
- data.tar.gz: e8ac8d7f4bd819615d58a3325817599d33878409c8104a0f2594c81fd0ddf4b77b1851a524a6851b9462f9b61f6c5d5cc38a44e0e6cd03a6f78acef1264879ea
6
+ metadata.gz: 7d5cd85fe45b05060738a72f6be624e3cfef6bf9a24ea3019433773aa7bb8a7a6f5ef94dc6a0d2cce5a2d04d4b820ca242f41f07e8720aa2f004f528bc4de372
7
+ data.tar.gz: a82a023c73718e924210c2a379d6195b62062731679c24c6a230cff26df3d455107c1a902d8a9a97fd3a2a2510a6c145e8f02545121720139ad2e2802d37b3ae
data/README.md CHANGED
@@ -51,7 +51,9 @@ The runner also comes with a tool to investigate leaky tests:
51
51
  minitest-queue --queue path/to/test_order.log --failing-test 'SomeTest#test_something' bisect -Itest test/**/*_test.rb
52
52
  ```
53
53
 
54
- ### RSpec
54
+ ### RSpec [DEPRECATED]
55
+
56
+ The rspec-queue runner is deprecated. The minitest-queue runner continues to be supported and is actively being improved. At Shopify, we strongly recommend that new projects set up their test suite using Minitest rather than RSpec.
55
57
 
56
58
  Assuming you use one of the supported CI providers, the command can be as simple as:
57
59
 
@@ -67,4 +69,4 @@ rspec-queue --queue redis://example.com --timeout 600 --report
67
69
 
68
70
  #### Limitations
69
71
 
70
- Because of how `ci-queue` execute the examples, `before(:all)` and `after(:all)` hooks are not supported. `rspec-queue` will explicitly reject them.
72
+ Because of how `ci-queue` executes the examples, `before(:all)` and `after(:all)` hooks are not supported. `rspec-queue` will explicitly reject them.
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.add_development_dependency 'rake'
34
34
  spec.add_development_dependency 'minitest', ENV.fetch('MINITEST_VERSION', '~> 5.11')
35
35
  spec.add_development_dependency 'rspec', '~> 3.7.0'
36
- spec.add_development_dependency 'redis', '~> 3.3'
36
+ spec.add_development_dependency 'redis'
37
37
  spec.add_development_dependency 'simplecov', '~> 0.12'
38
38
  spec.add_development_dependency 'minitest-reporters', '~> 1.1'
39
39
 
@@ -8,6 +8,7 @@ module CI
8
8
  attr_accessor :max_test_failed
9
9
  attr_reader :circuit_breakers
10
10
  attr_writer :seed, :build_id
11
+ attr_writer :queue_init_timeout
11
12
 
12
13
  class << self
13
14
  def from_env(env)
@@ -32,7 +33,8 @@ module CI
32
33
  timeout: 30, build_id: nil, worker_id: nil, max_requeues: 0, requeue_tolerance: 0,
33
34
  namespace: nil, seed: nil, flaky_tests: [], statsd_endpoint: nil, max_consecutive_failures: nil,
34
35
  grind_count: nil, max_duration: nil, failure_file: nil, max_test_duration: nil,
35
- max_test_duration_percentile: 0.5, track_test_duration: false, max_test_failed: nil
36
+ max_test_duration_percentile: 0.5, track_test_duration: false, max_test_failed: nil,
37
+ queue_init_timeout: nil
36
38
  )
37
39
  @build_id = build_id
38
40
  @circuit_breakers = [CircuitBreaker::Disabled]
@@ -48,12 +50,17 @@ module CI
48
50
  @seed = seed
49
51
  @statsd_endpoint = statsd_endpoint
50
52
  @timeout = timeout
53
+ @queue_init_timeout = queue_init_timeout
51
54
  @track_test_duration = track_test_duration
52
55
  @worker_id = worker_id
53
56
  self.max_consecutive_failures = max_consecutive_failures
54
57
  self.max_duration = max_duration
55
58
  end
56
59
 
60
+ def queue_init_timeout
61
+ @queue_init_timeout || timeout
62
+ end
63
+
57
64
  def max_consecutive_failures=(max)
58
65
  if max
59
66
  @circuit_breakers << CircuitBreaker::MaxConsecutiveFailures.new(max_consecutive_failures: max)
@@ -8,7 +8,7 @@ module CI
8
8
  end
9
9
 
10
10
  def total
11
- wait_for_master(timeout: config.timeout)
11
+ wait_for_master(timeout: config.queue_init_timeout)
12
12
  redis.get(key('total')).to_i
13
13
  end
14
14
 
@@ -17,7 +17,7 @@ module CI
17
17
  end
18
18
 
19
19
  def wait_for_workers
20
- return false unless wait_for_master(timeout: config.timeout)
20
+ wait_for_master(timeout: config.queue_init_timeout)
21
21
 
22
22
  yield if block_given?
23
23
 
@@ -56,10 +56,18 @@ module CI
56
56
  rescue *CONNECTION_ERRORS
57
57
  end
58
58
 
59
- def retrying?
60
- redis.exists(key('worker', worker_id, 'queue'))
61
- rescue *CONNECTION_ERRORS
62
- false
59
+ if ::Redis.method_defined?(:exists?)
60
+ def retrying?
61
+ redis.exists?(key('worker', worker_id, 'queue'))
62
+ rescue *CONNECTION_ERRORS
63
+ false
64
+ end
65
+ else
66
+ def retrying?
67
+ redis.exists(key('worker', worker_id, 'queue'))
68
+ rescue *CONNECTION_ERRORS
69
+ false
70
+ end
63
71
  end
64
72
 
65
73
  def retry_queue
@@ -2,7 +2,7 @@
2
2
 
3
3
  module CI
4
4
  module Queue
5
- VERSION = '0.20.2'
5
+ VERSION = '0.20.7'
6
6
  DEV_SCRIPTS_ROOT = ::File.expand_path('../../../../../redis', __FILE__)
7
7
  RELEASE_SCRIPTS_ROOT = ::File.expand_path('../redis', __FILE__)
8
8
  end
@@ -58,6 +58,10 @@ module Minitest
58
58
  @data[:test_and_module_name]
59
59
  end
60
60
 
61
+ def test_suite
62
+ @data[:test_suite]
63
+ end
64
+
61
65
  def test_file
62
66
  @data[:test_file]
63
67
  end
@@ -27,6 +27,7 @@ module Minitest
27
27
  test_line: test_line,
28
28
  test_and_module_name: "#{test.klass}##{test.name}",
29
29
  test_name: test.name,
30
+ test_suite: test.klass,
30
31
  error_class: test.failure.exception.class.name,
31
32
  output: to_s,
32
33
  }
@@ -96,13 +96,16 @@ module Minitest
96
96
  message.lines.first.chomp.gsub(/\e\[[^m]+m/, '')
97
97
  end
98
98
 
99
+ def project_root_path_matcher
100
+ @project_root_path_matcher ||= %r{(?<=\s)#{Regexp.escape(Minitest::Queue.project_root)}/}
101
+ end
102
+
99
103
  def message_for(test)
100
104
  suite = test.klass
101
105
  name = test.name
102
106
  error = test.failure
103
107
 
104
- message_with_relative_paths = error.message.gsub("#{Minitest::Queue.project_root}/", '')
105
-
108
+ message_with_relative_paths = error.message.gsub(project_root_path_matcher, '')
106
109
  if test.passed?
107
110
  nil
108
111
  elsif test.skipped?
@@ -352,7 +352,7 @@ module Minitest
352
352
 
353
353
  help = <<~EOS
354
354
  Specify a timeout after which if a test haven't completed, it will be picked up by another worker.
355
- It is very important to set this vlaue higher than the slowest test in the suite, otherwise performance will be impacted.
355
+ It is very important to set this value higher than the slowest test in the suite, otherwise performance will be impacted.
356
356
  Defaults to 30 seconds.
357
357
  EOS
358
358
  opts.separator ""
@@ -360,6 +360,15 @@ module Minitest
360
360
  queue_config.timeout = timeout
361
361
  end
362
362
 
363
+ help = <<~EOS
364
+ Specify a timeout to elect the leader and populate the queue.
365
+ Defaults to the value set for --timeout.
366
+ EOS
367
+ opts.separator ""
368
+ opts.on('--queue-init-timeout TIMEOUT', Float, help) do |timeout|
369
+ queue_config.queue_init_timeout = timeout
370
+ end
371
+
363
372
  help = <<~EOS
364
373
  Specify $LOAD_PATH directory, similar to Ruby's -I
365
374
  EOS
@@ -54,7 +54,11 @@ module Minitest
54
54
 
55
55
  def test_file_path
56
56
  path = @test.source_location.first
57
- relative_path_for(path)
57
+ begin
58
+ relative_path_for(path)
59
+ rescue ArgumentError
60
+ path # e.g. "(eval)" etc.
61
+ end
58
62
  end
59
63
 
60
64
  def test_file_line_number
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.20.2
4
+ version: 0.20.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean Boussier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-13 00:00:00.000000000 Z
11
+ date: 2020-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: redis
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '3.3'
75
+ version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '3.3'
82
+ version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: simplecov
85
85
  requirement: !ruby/object:Gem::Requirement