author | Sebastian Hengst <archaeopteryx@coole-files.de> |
Wed, 15 Nov 2017 19:17:56 +0100 | |
changeset 392040 | 0685df5dc52a30792f148fe883fdf59096663a7e |
parent 392039 | 10476f6075aef6b466010b03b1cf156d3b6d34be |
child 392041 | b58d7dbfcf60e3dabbca270ff0c4c4d1b233edf0 |
push id | 32909 |
push user | cbrindusan@mozilla.com |
push date | Wed, 15 Nov 2017 22:25:14 +0000 |
treeherder | mozilla-central@f41930a869a8 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | linting-fix |
bugs | 1417436 |
milestone | 59.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/taskcluster/taskgraph/transforms/tests.py +++ b/taskcluster/taskgraph/transforms/tests.py @@ -658,17 +658,18 @@ def handle_suite_category(config, tests) if not any(arg.startswith(category_arg) for arg in extra): extra.append('{}={}'.format(category_arg, flavor)) yield test @transforms.add def enable_code_coverage(config, tests): - """Enable code coverage for the linux64-ccov/opt & linux64-jsdcov/opt & win64-ccov/debug build-platforms""" + """Enable code coverage for the linux64-ccov/opt & linux64-jsdcov/opt & win64-ccov/debug + build-platforms""" for test in tests: if 'ccov' in test['build-platform'] and not test['test-name'].startswith('test-verify'): test['mozharness'].setdefault('extra-options', []).append('--code-coverage') test['when'] = {} test['instance-size'] = 'xlarge' # Ensure we don't run on inbound/autoland/beta, but if the test is try only, ignore it if 'mozilla-central' in test['run-on-projects'] or \ test['run-on-projects'] == 'built-projects':