Skip to content

Commit

Permalink
Revert "Bug 1208104 - Re-introduce windows skipping"
Browse files Browse the repository at this point in the history
This reverts commit b1d2d1e.
  • Loading branch information
chmanchester committed Nov 3, 2015
1 parent b1d2d1e commit 038de2e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions triggerbot/triggerbot_pulse.py
Expand Up @@ -35,8 +35,6 @@ def extract_payload(payload, key):
builder = prop[1]
if prop[0] == 'branch':
branch = prop[1]
if prop[0] == 'platform':
platform = prop[1]

if rev and len(rev) > 12:
rev = rev[:12]
Expand All @@ -59,11 +57,6 @@ def extract_payload(payload, key):
branch)
match = unittest_re.match(key)

# Bug 1208104: Force triggering off for Windows testers until
# we have control of the backlog.
if platform.startswith('win64') or platform.startswith('win32'):
match = None

return branch, rev, builder, status, match is not None, comments, user


Expand All @@ -78,6 +71,8 @@ def handle_message(data, message):
is_test]):
return

# logger.info('Saw %s at %s with "%s"' % (user, rev, comments))

tw.handle_message(key, branch, rev, builder, status, comments, user)


Expand Down

0 comments on commit 038de2e

Please sign in to comment.