aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-02-27 12:08:57 -0800
committerGravatar murgatroid99 <mlumish@google.com>2015-02-27 12:08:57 -0800
commit6a4c4fabf359a8253c94eaeeb7e044973bcc5837 (patch)
tree5bb92cb0f78363bfffebf655fdcf274a4cbc5b32 /tools/run_tests/run_tests.py
parent1c94bf98066fe696b4b58ea6941353f2d9b13d08 (diff)
Added ruby tests to run_tests.py
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 4e0ff85c59..7b87c621dd 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -136,6 +136,17 @@ class PythonLanguage(object):
def build_steps(self):
return [['tools/run_tests/build_python.sh']]
+class RubyLanguage(object):
+
+ def test_specs(self, config, travis):
+ return [config.job_spec('tools/run_tests/run_ruby.sh', None)]
+
+ def make_targets(self):
+ return ['static_c']
+
+ def build_steps(self):
+ return [['tools/run_tests/build_ruby.sh']]
+
# different configurations we can run under
_CONFIGS = {
@@ -160,6 +171,7 @@ _LANGUAGES = {
'node': NodeLanguage(),
'php': PhpLanguage(),
'python': PythonLanguage(),
+ 'ruby': RubyLanguage()
}
# parse command line