aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar apolcyn <apolcyn@google.com>2017-02-06 14:44:34 -0800
committerGravatar GitHub <noreply@github.com>2017-02-06 14:44:34 -0800
commit7546f3c4a46af9879181aa4c636e973f5fe0958e (patch)
tree44e03f977d2bae27c73cd0235375d265165dc9df /tools
parent9d59861bc6dd969c9d42e0d8f83c4a77ba6ddc84 (diff)
parente364b9ac5411515bd27c78b21deb7903939e5b2f (diff)
Merge pull request #9589 from apolcyn/turn_off_ruby_tests
skip ruby tests on mac for time being
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index a7278ed407..b4e71a4935 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -670,11 +670,18 @@ class RubyLanguage(object):
_check_compiler(self.args.compiler, ['default'])
def test_specs(self):
+ #TODO(apolcyn) turn mac ruby tests back on once ruby 2.4 issues done
+ if platform_string() == 'mac':
+ print('skipping ruby test_specs on mac until running on 2.4')
+ return []
return [self.config.job_spec(['tools/run_tests/helper_scripts/run_ruby.sh'],
timeout_seconds=10*60,
environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
def pre_build_steps(self):
+ if platform_string() == 'mac':
+ print('skipping ruby pre_build_steps on mac until running on 2.4')
+ return []
return [['tools/run_tests/helper_scripts/pre_build_ruby.sh']]
def make_targets(self):
@@ -684,9 +691,15 @@ class RubyLanguage(object):
return []
def build_steps(self):
+ if platform_string() == 'mac':
+ print('skipping ruby build_steps on mac until running on 2.4')
+ return []
return [['tools/run_tests/helper_scripts/build_ruby.sh']]
def post_tests_steps(self):
+ if platform_string() == 'mac':
+ print('skipping ruby post_test_steps on mac until running on 2.4')
+ return []
return [['tools/run_tests/helper_scripts/post_tests_ruby.sh']]
def makefile_name(self):