Skip to content

Commit

Permalink
Revert "Create variant tasks for non-reproducible testcases." (#724)
Browse files Browse the repository at this point in the history
* Revert "Create variant tasks for non-reproducible testcases. (#717)"

This reverts commit 16b7d27.

* Update variant_task.py
  • Loading branch information
inferno-chromium authored Jul 23, 2019
1 parent c0ac9b8 commit 823fe0e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/python/bot/tasks/task_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@ def mark_unreproducible_if_flaky(testcase, potentially_flaky):
# cron. This avoids calling the issue tracker apis from GCE.

# For unreproducible testcases, it is still beneficial to get component
# information from blame task and if it is reproducible in other jobs.
# information from blame task.
create_blame_task_if_needed(testcase)
create_variant_tasks_if_needed(testcase)


def create_blame_task_if_needed(testcase):
Expand Down Expand Up @@ -200,9 +199,8 @@ def create_tasks(testcase):
# For a non reproducible crash.
if testcase.one_time_crasher_flag:
# For unreproducible testcases, it is still beneficial to get component
# information from blame task and if it is reproducible in other jobs.
# information from blame task.
create_blame_task_if_needed(testcase)
create_variant_tasks_if_needed(testcase)
return

# For a fully reproducible crash.
Expand Down

0 comments on commit 823fe0e

Please sign in to comment.