ci-queue 0.94.0 → 0.95.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/ci/queue/version.rb +1 -1
- data/lib/minitest/queue/runner.rb +7 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbfe5c0fc78304868386bb6349559364566bb77e1b66353d8382054a1070fcb6
|
|
4
|
+
data.tar.gz: 8e61c69ecf3ef5bd62f1a099f9206eb339cb95a47988d283c0ef6158bf20c401
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c030de4de40d4d9ee06d88807cc33dc680714af6cf06b3c261f426ab39909826d13165fc0b5cf298f74e8f97cb683dfc2d05ba50951d358717a9cb24344233e3
|
|
7
|
+
data.tar.gz: 3f40abe7cd593a0f4b3bbf34abb11a2031515aea06908952f1de090e8d2657d670265e75e817c2e2b7ef5a707c74e6d0e96a625cdf61f4e8fc76a5baf2f868bf
|
data/Gemfile.lock
CHANGED
data/lib/ci/queue/version.rb
CHANGED
|
@@ -254,7 +254,9 @@ module Minitest
|
|
|
254
254
|
step(yellow("The failing test was the first test in the test order so there is nothing to bisect."))
|
|
255
255
|
File.write('log/test_order.log', "")
|
|
256
256
|
File.write('log/bisect_test_details.log', "")
|
|
257
|
-
|
|
257
|
+
# Bisect ran successfully; there is simply nothing to bisect against.
|
|
258
|
+
# Reserve non-zero exits for cases where the bisect could not run (see failing_test_present? above).
|
|
259
|
+
exit! 0
|
|
258
260
|
end
|
|
259
261
|
|
|
260
262
|
failing_order = queue.candidates
|
|
@@ -263,7 +265,10 @@ module Minitest
|
|
|
263
265
|
step(yellow("The bisection was inconclusive, there might not be any leaky test here."))
|
|
264
266
|
File.write('log/test_order.log', "")
|
|
265
267
|
File.write('log/bisect_test_details.log', "")
|
|
266
|
-
|
|
268
|
+
# Bisect ran successfully; the failure did not reproduce on the narrowed-down order.
|
|
269
|
+
# This is the expected outcome for genuinely flaky tests (timing/async) rather than order-dependent ones.
|
|
270
|
+
# Reserve non-zero exits for cases where the bisect could not run.
|
|
271
|
+
exit! 0
|
|
267
272
|
else
|
|
268
273
|
step(green('The following command should reproduce the leak on your machine:'), collapsed: false)
|
|
269
274
|
command = %w(bundle exec minitest-queue --queue - run)
|