Allure JBehave configuration
To set the configuration options, create an allure.properties file in your project's src/test/resources directory.
allure.label.⟨NAME⟩
properties
allure.label.epic = Authentication
allure.label.severity = blockerAssign an arbitrary label to all the tests in the current test run.
allure.link.⟨TYPE⟩.pattern
properties
allure.link.issue.pattern = https://jira.example.org/browse/{}Define a link pattern — a template that can be used to construct full URLs from short identifiers when using the Runtime API (e.g. Allure.issue() or Allure.tms()), see the reference.
The value must be a string pattern containing {} at the position where the identifier should be placed.
allure.results.directory
properties
allure.results.directory = build/allure-resultsPath to the directory where Allure JBehave will save the test results, see How it works. If the directory does not exist, it will be created. Defaults to allure-results.