Backed out changeset a43387ee65d7 (bug 1342392) for failing flake8 and py-compat jobs. r=backout

This commit is contained in:
Sebastian Hengst
2017-09-18 13:50:16 +02:00
parent ef98a177ff
commit ca434b9d52
32 changed files with 37 additions and 631 deletions

View File

@@ -504,22 +504,3 @@ class TaskClusterImagesProvider(object):
except Exception:
traceback.print_exc()
sys.exit(1)
@CommandProvider
class TaskClusterPartialsData(object):
@Command('release-history', category="ci",
description="Query balrog for release history used by enable partials generation")
@CommandArgument('-b', '--branch',
help="The gecko project branch used in balrog, such as "
"mozilla-central, release, date")
@CommandArgument('--product', default='Firefox',
help="The product identifier, such as 'Firefox'")
def generate_partials_builds(self, product, branch):
from taskgraph.util.partials import populate_release_history
try:
import yaml
release_history = {'release_history': populate_release_history(product, branch)}
print(yaml.safe_dump(release_history, allow_unicode=True, default_flow_style=False))
except Exception:
traceback.print_exc()
sys.exit(1)