[ruby fork support] skip new fork tests since they're flaky at introduction (#33664)
These tests have been flaky since they were added in https://github.com/grpc/grpc/pull/33430
This commit is contained in:
parent
2788b56867
commit
b32d94de05
|
|
@ -962,8 +962,10 @@ class RubyLanguage(object):
|
|||
"src/ruby/end2end/call_credentials_timeout_test.rb",
|
||||
"src/ruby/end2end/call_credentials_returning_bad_metadata_doesnt_kill_background_thread_test.rb",
|
||||
]:
|
||||
if platform_string() == "mac" and test in [
|
||||
# skip fork tests on mac, it's only supported on linux
|
||||
if test in [
|
||||
# TODO(apolcyn): Unskip fork tests on linux. They are
|
||||
# skipped everywhere for now because they're flaky since
|
||||
# introduction.
|
||||
"src/ruby/end2end/fork_test.rb",
|
||||
"src/ruby/end2end/simple_fork_test.rb",
|
||||
"src/ruby/end2end/secure_fork_test.rb",
|
||||
|
|
|
|||
Loading…
Reference in New Issue