when filing a new bug use meta tracking bug instead of raw error message
Categories
(Tree Management :: Treeherder: Frontend, task)
Tracking
(Not tracked)
People
(Reporter: jmaher, Unassigned)
References
(Blocks 1 open bug)
Details
As we are switching to a single bug per test case, we will need to file new bugs in the new format.
Specifically the summary should be: Intermittent <path> | single tracking bug
and we should have keywords: intermittent-failure
and whiteboard with [intermittent-testcase]
This will only be for tests that match some criteria:
- has a test path
- no CRASH
- no TIMEOUT
- in list of tasks we support SIMPLE_BUG_TASKS
SIMPLE_BUG_TASKS = ['xpcshell'] # if any words in array match task, use simple bug format.
we will need to hard code SIMPLE_BUG_TASKS within treeherder for now.
Reporter | ||
Comment 1•3 years ago
|
||
treeherder code for bugfiler:
https://github.com/mozilla/treeherder/blob/40de4922ad884e749ed57bd41e106231ce806b7e/ui/shared/BugFiler.jsx
this is most likely called from:
https://github.com/mozilla/treeherder/blob/40de4922ad884e749ed57bd41e106231ce806b7e/ui/shared/tabs/failureSummary/FailureSummaryTab.jsx#L44
I would prefer to hack as few files as possible, so given that we are hacking FailureSummaryTab.jsx in bug 1757222, if we could do the same here it would be nice. Possibly we could hack the suggestion
that we pass into BugFiler
so that it has what we need if the conditions are met.
Reporter | ||
Comment 2•3 years ago
|
||
we discussed adding a second keyword intermittent-testcase
, I would need to get that added, or use a whiteboard
tag. :aryx, would a whiteboard tag work, or should I formally add the new keyword.
Comment 3•3 years ago
|
||
Keyword works better when it comes to parsing and querying.
Reporter | ||
Comment 4•3 years ago
|
||
a pull request here:
https://github.com/mozilla/treeherder/pull/7407
I want to see how this is perceived, possibly I will re-work this to be in FailureSummaryTab.jsx
Reporter | ||
Comment 5•3 years ago
|
||
this is in production now
Description
•