Skip to content
Snippets Groups Projects
Commit a0b3bfa3 authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Start integrating ObjC tests in run_tests.py

parent 0238b3ae
No related branches found
No related tags found
No related merge requests found
......@@ -304,6 +304,25 @@ class CSharpLanguage(object):
return 'csharp'
class ObjCLanguage(object):
def test_specs(self, config, travis):
return [config.job_spec(['src/objective-c/tests/run_tests.sh'], None,
environ=_FORCE_ENVIRON_FOR_WRAPPERS)]
def make_targets(self):
return []
def build_steps(self):
return []
def supports_multi_config(self):
return False
def __str__(self):
return 'objc'
class Sanity(object):
def test_specs(self, config, travis):
......@@ -369,6 +388,7 @@ _LANGUAGES = {
'python': PythonLanguage(),
'ruby': RubyLanguage(),
'csharp': CSharpLanguage(),
'objc' : ObjCLanguage(),
'sanity': Sanity(),
'build': Build(),
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment