rspec_trunk_flaky_tests 0.6.14-x86_64-linux → 0.6.15-x86_64-linux

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: '01283fda19117ebeb1acc3e908d96f30b5ce23a738f64550094168a1b8725380'
4
- data.tar.gz: 48241fcd3b7f29ee942ed5fd94c5638d51ee25cf48e2eda6c6f4477d749c5cac
3
+ metadata.gz: 5fbd5829cbd2df91046784c7aa89314cbb47775285c6168dd3418fa30ab98cc0
4
+ data.tar.gz: f399507f0110997f049013d76b58e40db33434d9ee93e25e64742e7d77bdf693
5
5
  SHA512:
6
- metadata.gz: 390fbfbd4353800cece8190a00f5e086064451ffbd6b859cfdc91af4c4a9e195273a7dc7b831b9c505fe671daf22f3bba94dd9e2612426415986013a470ade8c
7
- data.tar.gz: 3f9a0a508ce8e6380452389738e12c12423b73bec718459d92f6d7a968e99da7824ad4ead66ba147866362b4ca4fc8a7de6d7e2296ae9383a9e2656cc8d7f569
6
+ metadata.gz: 3bc73aef2d01c0883fc78850478e99c05d1f2204c5944fed137c7f83bae245881ed4454fabeaa31bc6682823212e36be46c88a764ddb63550e70fb5c17c8075f
7
+ data.tar.gz: d90608a43d45889673d82ff3f02a1c951597b2a47bd1c99348d05648b3e7410b7868fc5072ebcf188b7c9adbeeadc4e071692a0dcf4c08108bd659489f1d7320
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -45,7 +45,11 @@ module RSpec
45
45
  class Trunk
46
46
  def self.setup
47
47
  RSpec.configure do |config|
48
- config.around(:each, &:run_with_trunk)
48
+ if ENV['DISABLE_RSPEC_TRUNK_FLAKY_TESTS'] == 'true'
49
+ config.around(:each, &:run)
50
+ else
51
+ config.around(:each, &:run_with_trunk)
52
+ end
49
53
  end
50
54
  end
51
55
 
@@ -141,6 +145,8 @@ class TrunkAnalyticsListener
141
145
  end
142
146
 
143
147
  RSpec.configure do |c|
148
+ next if ENV['DISABLE_RSPEC_TRUNK_FLAKY_TESTS'] == 'true'
149
+
144
150
  c.reporter.register_listener TrunkAnalyticsListener.new, :example_finished, :close
145
151
  end
146
152
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_trunk_flaky_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.14
4
+ version: 0.6.15
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Trunk Technologies, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-10 00:00:00.000000000 Z
11
+ date: 2025-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-core