Skip to content
This repository has been archived by the owner on May 15, 2018. It is now read-only.

Hardcoded fix to run endurance tests for en-US only (#209) #213

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions pulse.py
Expand Up @@ -273,6 +273,11 @@ def on_build(self, data, message):
target_platform = self.get_platform_identifier(platform)

for testrun in target_branch['testruns']:
# TODO: Pretty bad hack, so make it configurable in the json config (#209)
# Do not run endurance tests for localized versions of Firefox
if testrun in ['endurance'] and locale != 'en-US':
continue

# Fire off a build for each supported platform
for node in target_branch['platforms'][target_platform]:
parameters = self.generate_job_parameters(testrun, node,
Expand Down