File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ jobs:
135135 run : |
136136 # Actions uses UTF8, causes test failures, similar to normal OS setup
137137 chcp.com 437
138- make ${{ StartsWith(matrix.test_task, 'test/') && matrix.test_task || 'test-all' }}
138+ time make ${{ StartsWith(matrix.test_task, 'test/') && matrix.test_task || 'test-all' }}
139139 env :
140140 RUBY_TESTOPTS : >-
141141 -j${{env.TEST_JOBS}} --retry --job-status=normal --show-skip --timeout-scale=1.5
Original file line number Diff line number Diff line change @@ -496,20 +496,13 @@ class TupleSpaceProxyTest < Test::Unit::TestCase
496496 include TupleSpaceTestModule
497497
498498 def setup
499- if RUBY_PLATFORM . match? ( /mingw/ )
500- @omitted = true
501- omit 'This test seems to randomly hang on GitHub Actions MinGW UCRT64'
502- end
503499 super
504500 ThreadGroup . new . add ( Thread . current )
505501 @ts_base = Rinda ::TupleSpace . new ( 1 )
506502 @ts = Rinda ::TupleSpaceProxy . new ( @ts_base )
507503 @server = DRb . start_service ( "druby://localhost:0" )
508504 end
509505 def teardown
510- return if @omitted
511- @omitted = false
512-
513506 # implementation-dependent
514507 @ts_base . instance_eval {
515508 if th = @keeper
You can’t perform that action at this time.
0 commit comments