aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-02-27 16:04:33 -0800
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-02-27 16:04:33 -0800
commit21bcda3e1df56233da36c578e7d8aed9e71fafad (patch)
treedec51270486dcd34f5e05c4c07ca9da6a67bc71d /tools/run_tests/run_tests.py
parente0c553ccf2012e9743a1c5e04f524e8e58d665f4 (diff)
parent0ee5fb8754afc44ee341ff3b737bcfe544ba390c (diff)
Merge pull request #879 from murgatroid99/ruby_run_tests
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 372321c5e3..b7370327dd 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -140,6 +140,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 = {
@@ -164,6 +175,7 @@ _LANGUAGES = {
'node': NodeLanguage(),
'php': PhpLanguage(),
'python': PythonLanguage(),
+ 'ruby': RubyLanguage()
}
# parse command line