You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the motivation / use case for changing the behavior?
Display tags correctly
Please tell us about your environment:
Allure version: 2.13.8
Test framework: pytest@7.0.1
Allure adaptor: allure-pytest@2.13.5
Other information
I noticed that the function item.get_closest_marker(name) to process markers is called in allure. For multiple marks with the same name, only return the first marker matching the name
I'm submitting a ...
What is the current behavior?
I marked multiple marks with the same name in the use case
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
What is the expected behavior?
Display multiple tags for all
What is the motivation / use case for changing the behavior?
Display tags correctly
Please tell us about your environment:
Other information
I noticed that the function
item.get_closest_marker(name)
to process markers is called in allure. For multiple marks with the same name, only return the first marker matching the nameyou should probably call the function item.iter_markers(name)
The text was updated successfully, but these errors were encountered: