Missing list of executed suites
I'm submitting a ...
- [x] bug report
- [ ] feature request
- [ ] support request => Please do not submit support request here, see note at the top of this template.
What is the current behavior?
Missing of executed tests in SIUTES on Overview page. Suites subtitles show correctly number of items, but missing list of executed suites.

If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
- Run tests
- Generate report
What is the expected behavior?
list of executed suites are displayed
Please tell us about your environment:
| Allure version | 2.12.1 |
|---|---|
| Test framework | [email protected] |
| Allure adaptor | [email protected] |
| [email protected] |
Other information
Hi, any update?
@Ljancek what is test-suites in behave?
@sseliverstov test-suit in behave is Scenario or Scenario outline
@Ljancek in my opinion
parent suite = path to feature file suite = feature file sub suite = scenario/scenario outline
is better.
my motivation is
- suites are representation of code layer
- avoid duplicating behavior with bdd labels
@Ljancek ?
@sseliverstov sounds good
Any update?
@sseliverstov Something news?
Any update? @sseliverstov
Hi guys i have the exactly same issue, in my case i work with lot of different test teams and every team work with your own language and generate report with allure and then put it all together on the same allure server. For ruby and java the output of allure-results are the same, but in python dont have some keys like "package" and "suites".
In the listener file i change the labels array to add this keys :
test_case.labels.append(Label(name=LabelType.SUITE, value=scenario.feature.name)) test_case.labels.append(Label(name=LabelType.PACKAGE, value=scenario.feature.name))
And in the LabelTypes i add PACKAGE to the constants
This changes reproduces these results :


I running allure-behave tests locally and everything still working.
Make sense open this pull request ?
Any updates??
I will open this pull request.
Hello ! Someone can unblock this issue ? :)
@jmfiaschi and @Ljancek I reopened the pull request because previously I deleted the old fix branch.
Can this please be merged already?
Testing locally by applying the (literally) minor update as shown in the PR and I can confirm:
The scenarios (aka tests) are grouped under the feature (aka test suite).