Skip to content

Commit 31b8469

Browse files
authored
Merge pull request #139 from S-H-GAMELINKS/fix-testunit-ci-hang
Fix testunit CI hang by requiring test-unit >= 3.7.4
2 parents e1674e1 + 4c210d0 commit 31b8469

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

gemfiles/testunit.gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
source 'https://rubygems.org'
66

7-
gem 'test-unit'
7+
# test-unit 3.7.4 changed `TestSuite#run` method signature.
8+
# Earlier versions cause ArgumentError in test-queue's TestSuite subclass,
9+
# crashing workers and causing the master process to hang indefinitely.
10+
gem 'test-unit', '>= 3.7.4'
811

912
gemspec path: '../'

0 commit comments

Comments
 (0)