allure will mark flaky test as default category(Production defects or Test defects), the customized categories.json does not work for flaky test #2794
Unanswered
sukercjw
asked this question in
Bug Reports
Replies: 1 comment 1 reply
-
It seems like flaky tests will be only matched with categories with the final boolean matchesFlaky = result.isFlaky() == category.isFlaky(); Since final boolean matchesFlaky = Objects.isNotNull(category.isFlaky()) && result.isFlaky() == category.isFlaky(); This way flaky results will be matched to all the categories by default unless you directly add |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would like to know if anyone encounter this issue?
allure will mark flaky test as default category(Production defects or Test defects), the customized categories.json does not work for flaky test, even it has meen matched with test status and message regex. i am using pytest for allure
how could we fix that?
thanks a lot
Beta Was this translation helpful? Give feedback.
All reactions