Skip to content
Snippets Groups Projects
Commit 28d78aad authored by Masood Malekghassemi's avatar Masood Malekghassemi
Browse files

Merge pull request #1584 from ctiller/shortname-for-the-snake

Set shortname for Python tests
parents 0fff02c3 83020257
No related branches found
No related tags found
No related merge requests found
......@@ -184,10 +184,14 @@ class PythonLanguage(object):
def test_specs(self, config, travis):
modules = [config.job_spec(['tools/run_tests/run_python.sh', '-m',
test['module']], None)
test['module']],
None,
shortname=test['module'])
for test in self._tests if 'module' in test]
files = [config.job_spec(['tools/run_tests/run_python.sh',
test['file']], None)
test['file']],
None,
shortname=test['file'])
for test in self._tests if 'file' in test]
return files + modules
......
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