是否可以使用@Issue 注释来影响测试在 Allure 报告中显示的类别?

Is it possible to use @Issue annotations to impact the category a test appears as inside an Allure report?

是否可以使用 @Issue 注释来影响测试在 Allure 报告中显示的类别?

我希望带有 @Issue 注释的测试显示在 "Product Defects" 中,而没有显示在 "Test Defects" 中的测试。

@Issue("JIRA-1234")
public void productDefect() {
    // Test which fails and should be categorised as product defect
}

categories 上的 Allure 文档没有显示执行此操作的方法。有没有一种方法可以根据问题注释控制类别,或者完全是测试错误 message/stack trace?

如果这不可能开箱即用,是否有解决方法可以轻松实现此行为?

这目前似乎不可能,但 GitHub 上有一个开放的功能请求。