allure-framework/allure-java

๐Ÿž: Cucumber-JVM - Suite view : Tests are duplicated when using parent-suite, suite and sub-suite metadata

harmin-parra opened this issue ยท 0 comments

What happened?

I added the following annotations to my Cucumber-JVM test:

@allure.label.parentSuite:Cucumber
@allure.label.suite:Petstore
@allure.label.subSuite:CRUD
Feature: Arithmetic_operations

  Scenario Outline: Addition
    Given I have a calculator
    When I add <x> and <y>
    Then the calculator returns <sum>

    Examples:
      |  x  |  y | sum |
      |  1  |  1 |  2  |
      |  2  |  1 |  3  |
      |  2  |  7 |  9  |

When I execute the test and generate the report, the tests are duplicated in the suite view.

image

What Allure Integration are you using?

allure-cucumber7-jvm

What version of Allure Integration you are using?

2.27.0

What version of Allure Report you are using?

2.28.0

Code of Conduct

  • I agree to follow this project's Code of Conduct