diff options
author | Takashi Kokubun <[email protected]> | 2022-08-25 11:36:04 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-08-25 11:37:39 -0700 |
commit | 881bc2a1765e7c19ab389c53841adc5ac329f1aa (patch) | |
tree | 3576be7819bf6984a9bf020cae70fad4f21de27b /test/drb/drbtest.rb | |
parent | af9fa16c96284f61b595a8f994926533fd51fd3b (diff) |
Skip running a DRb test on MinGW
It hangs even after a retry
https://github.com/ruby/ruby/runs/7966439530?check_suite_focus=true
We contacted GitHub Suppport about this before, and we concluded that
the problem is on our end. Unfortunately we don't have a bandwidth to
fix this MinGW problem, so until we get to work on it, this should be
just skipped to avoid a sporadic CI timeout.
Diffstat (limited to 'test/drb/drbtest.rb')
-rw-r--r-- | test/drb/drbtest.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/drb/drbtest.rb b/test/drb/drbtest.rb index 3c33aedb6f..56d73eb509 100644 --- a/test/drb/drbtest.rb +++ b/test/drb/drbtest.rb @@ -90,6 +90,7 @@ module DRbBase end def teardown + return if @omitted @ext.stop_service if defined?(@ext) && @ext if defined?(@service_name) && @service_name @drb_service.manager.unregist(@service_name) |