This repository contains Allure adaptor for Cucumber framework.
Add this line to your application's Gemfile:
And then execute:
Or install it yourself as:
$ gem install allure-cucumber
By default, Allure XML files are stored in gen/allure-results
. To change this add the following in features/support/env.rb
file:
AllureCucumber.configure do |c| c.output_dir = "/output/dir" end
By default, the Allure XML files from earlier runs are deleted at the start of new run. This can be disabled by:
AllureCucumber.configure do |c| c.clean_dir = false end
By default, allure-cucumber will analyze your cucumber tags looking for Test Management, Issue Management, and Severity hooks. These hooks will be displayed in the generated allure report (see allure-core for further info).
DEFAULT_TMS_PREFIX = '@TMS:' DEFAULT_ISSUE_PREFIX = '@ISSUE:' DEFAULT_SEVERITY_PREFIX = '@SEVERITY:'
Example:
@SEVERITY:trivial @ISSUE:YZZ-100 @TMS:9901 Scenario: Leave First Name Blank When I register an account without a first name Then exactly (1) [validation_error] should be visible
You can configure what allure-cucumber looks for by making the following changes
AllureCucumber.configure do |c| c.clean_dir = false c.tms_prefix = '@HIPTEST--' c.issue_prefix = '@JIRA++' c.severity_prefix = '@URGENCY:' end
Example:
@URGENCY:critical @JIRA++YZZ-100 @HIPTEST--9901 Scenario: Leave First Name Blank When I register an account without a first name Then exactly (1) [validation_error] should be visibleCompatability with Cucumber ~> 3
Add the following in features/support/env.rb
file:
Cucumber::Core::Test::Step.module_eval do def name return text if self.text == 'Before hook' return text if self.text == 'After hook' "#{source.last.keyword}#{text}" end end
More information in issue 63
Put the following in your features/support/env.rb
file:
require 'allure-cucumber'
Use --format AllureCucumber::Formatter --out where/you-want-results
while running cucumber or add it to cucumber.yml
You can also attach screenshots, logs or test data to steps.
# file: features/support/env.rb include AllureCucumber::DSL attach_file(title, file)
This adapter only generates XML files containing information about tests. See wiki section on how to generate report.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4