[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
pull/33668/head
apolcyn 2 years ago committed by GitHub
parent 2788b56867
commit b32d94de05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      tools/run_tests/run_tests.py

@ -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…
Cancel
Save