minitest-distributed 0.2.6 → 0.2.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: 79efd42c684d8c5ccc46ed3e17fa181c2aa496729452c15c2a89bbbd1f8ba264
4
- data.tar.gz: 5b0fe1f6d54ee09b7f01eb22d7331013d4538ffc761c3dd320e90e6ed32ce258
3
+ metadata.gz: 5dae86a5761e82ad0675cb289f945eeb29039bbb55c5be5d9e832e22bd5eb62c
4
+ data.tar.gz: 56c65bd5817b033a9a912dc24a1dd8ef7276efa75828a9b3a5dd1dfc82387e0c
5
5
  SHA512:
6
- metadata.gz: adfd17b4218db1a2a40e4093042491d751ba7a6d4995824fd6809e721084baf0ea97c2cec870606657c327fa244fad74b8687e403813004bf2207c4efdc0631e
7
- data.tar.gz: acc1a12c583c448f52fd1ea4a0a413865b4842425d716297dfa6919c61f658e8efe60188b7956436ea25b19145269ca3faccf10b99d492e38fcf3c9eaf44a69d
6
+ metadata.gz: 3a48ade567a3e8db5f70b7b2fe0f9b1f19e295eaf457f49df59030b997bf17de3b86253def06ec60741f9b6344447a15239f345b3af4197fe3588851c4e22473
7
+ data.tar.gz: b2ce6e5bfb8a24a308f4409b4e61b75db00fd3f677e1ea335d8b25e0c0f128eeb49737898fc6f7540923e965239e6bdb76dbdb14c22b42bea12ab06d88a08e7a
data/.rubocop.yml CHANGED
@@ -1,3 +1,5 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
1
3
  inherit_gem:
2
4
  rubocop-shopify: rubocop.yml
3
5
 
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,16 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2022-09-06 11:13:20 UTC using RuboCop version 1.36.0.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 9
10
+ # This cop supports safe autocorrection (--autocorrect).
11
+ # Configuration parameters: EnforcedStyle.
12
+ # SupportedStyles: def_self, self_class
13
+ Style/ClassMethodsDefinitions:
14
+ Exclude:
15
+ - 'lib/minitest/distributed/enqueued_runnable.rb'
16
+ - 'lib/minitest/distributed/result_type.rb'
data/CODEOWNERS ADDED
@@ -0,0 +1 @@
1
+ * @shopify/test-infra
@@ -257,7 +257,7 @@ module Minitest
257
257
 
258
258
  sig { returns(Redis) }
259
259
  def redis
260
- @redis ||= Redis.new(url: configuration.coordinator_uri)
260
+ @redis ||= Redis.new(url: configuration.coordinator_uri.to_s)
261
261
  end
262
262
 
263
263
  sig { returns(String) }
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Minitest
5
5
  module Distributed
6
- VERSION = "0.2.6"
6
+ VERSION = "0.2.7"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-distributed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Willem van Bergen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-23 00:00:00.000000000 Z
11
+ date: 2022-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -84,6 +84,8 @@ files:
84
84
  - ".github/workflows/ruby.yml"
85
85
  - ".gitignore"
86
86
  - ".rubocop.yml"
87
+ - ".rubocop_todo.yml"
88
+ - CODEOWNERS
87
89
  - CODE_OF_CONDUCT.md
88
90
  - Gemfile
89
91
  - LICENSE.txt