Does Allure Report Azure DevOps extension support attributes for better tests organization #2526
Unanswered
ciconq
asked this question in
Questions & Support
Replies: 3 comments 1 reply
-
Can confirm the same issue. Everything works locally, but it does not seem the attributes API is working when using the Allure extension in Azure DevOps pipelines. I'm just getting the plain report, with namespaces and test method names. Would be great to get some answer on this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, @darkosusic, @ciconq. I'm trying to look into this. Could you please share a code example? AllureLifecycle.Instance.UpdateTestCase(t =>
{
t.labels.Add(new(){
name = LabelName.SUITE,
value = "foo"
});
}); |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hey everyone!
Just to touch base, as I haven’t had the time to commit to this. I’ll start working on it again next week, so expect additional questions.
Thanks for replying!
I’ll get back to ya.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Just wanted to understand if this is a feature to be implemented or it should already work.
Currently I am using
NUnit
andAllure.NUnit
, both latest versions but when adding for example[AllureSuite("Test")]
to my test class I cannot see any changes in the report that is generated inAzure DevOps
butlocally
everything is working as intended.Maybe this is a bug but I am not sure as for example previously the report
Test body
was working fine in theextension
but for a couple of weeks it is unstructured and theattached screenshots
are not displayed(usingAllureApi
).Also I have tested the attributes with the obsolete imports(
NUnit.Allure.Attributes
) and the new one(Allure.NUnit.Attributes
) but the result is the same - nothing is changed and I can see the namespace for suite name instead the custom one that I have added.Beta Was this translation helpful? Give feedback.
All reactions