Render cucumber output in the format expected by TeamCity. This formatter is compatible with cucumber 2.0
Add this to your test suite's Gemfile:
gem 'teamcity_formatter'
Then execute:
$ bundle install
Or, install it directly:
$ gem install teamcity_formatter
Direct cucumber to use the formatter:
$ cucumber -f TeamCityFormatter::Formatter
Our overall goals in writing a cucumber formatter are:
- Generate TeamCity output from a cucumber 2 test suite
- Passing and failing test counts should match the same counts as the standard cucumber formatter
Cucumber elements are mapped simply to TeamCity test artifacts:
Cucumber | TeamCity |
---|---|
Feature | TestSuite |
Scenario | Test |
Sceanrio Outline Example | Test |
Test failures include the stack trace of the exception which triggered the failure.
This gem drew some code from cucumber_teamcity
. The cucumber_teamcity
formatter is not compatible with Cucumber 2.
Also, though we did not use code from their project, JetBrains makes available some TeamCity-related code here, which may be of interest to others researching TeamCity Cucumber formatters.
Apache License, Version 2.0