kevinrood / teamcity_formatter

TeamCity cucumber output formatter
Apache License 2.0
5 stars 8 forks source link

Tests not separated on scenarios in teamcity build #3

Closed ailjushkin closed 8 years ago

ailjushkin commented 8 years ago

@kevinrood Formatter does not display scenario outlines as separate tests in TC Build, something should be changed. Originally, these tests are show up in tab named 'tests' after they appear in the build log.

kevinrood commented 8 years ago

@PositiveAlex we fan out scenario outline examples and treat each example as a test in TeamCity. You should see scenario outline name - | example row | as the test name in TeamCity. Using this approach ensures the test count (passed/failed tests) is the same in TeamCity when compared to running the cucumber tests locally with the default formatter (a primary goal of this gem). The default formatter counts each scenario outline example as a test.

Your further thoughts?

kevinrood commented 8 years ago

Closing - there were no further comments for some time. The behavior is by design.