诱惑报告中针对C#+SpecFlow的测试严重性级别



我想为我的SpecFlow测试实现Allure框架的特性"Severity"。此处介绍了该功能https://docs.qameta.io/allure/.

我还没有在文档中找到如何为C#或SpecFlow实现它。

请分享你的想法。

特殊流场景中的@severity=blocker不起作用:(

这个标签在我的解决方案中有效:

@blocker
Scenario:...

allureConfig.json文件应该包含下一个数据:

"labels": {
"owner": "^owner:?(.+)",
"severity": "^(normal|blocker|critical|minor|trivial)"
},

最新更新