-
Notifications
You must be signed in to change notification settings - Fork 0
/
behave.ini
53 lines (48 loc) · 1.79 KB
/
behave.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# =============================================================================
# BEHAVE CONFIGURATION
# =============================================================================
# FILE: .behaverc, behave.ini, setup.cfg, tox.ini, pyproject.toml
#
# SEE ALSO:
# * http://packages.python.org/behave/behave.html#configuration-files
# * https://github.com/behave/behave
# * http://pypi.python.org/pypi/behave/
# =============================================================================
[behave]
default_tags = not (@xfail or @not_implemented)
show_skipped = false
format = rerun
progress3
outfiles = rerun.txt
build/behave.reports/report_progress3.txt
junit = true
junit_directory = build/behave.reports
logging_level = INFO
# logging_format = LOG.%(levelname)-8s %(name)-10s: %(message)s
# logging_format = LOG.%(levelname)-8s %(asctime)s %(name)-10s: %(message)s
# -- ALLURE-FORMATTER REQUIRES: pip install allure-behave
# brew install allure
# pip install allure-behave
# ALLURE_REPORTS_DIR=allure.reports
# behave -f allure -o $ALLURE_REPORTS_DIR ...
# allure serve $ALLURE_REPORTS_DIR
#
# SEE ALSO:
# * https://github.com/allure-framework/allure2
# * https://github.com/allure-framework/allure-python
#
# -- HTML-FORMATTER REQUIRES: pip install behave-html-formatter
# SEE ALSO: https://github.com/behave-contrib/behave-html-formatter
[behave.formatters]
allure = allure_behave.formatter:AllureFormatter
html = behave_html_formatter:HTMLFormatter
# -- RUNNER ALIASES:
# SCHEMA: runner_alias = scoped_runner.module_name:class_name
# EXAMPLE: default = behave.runner:Runner
[behave.runners]
# -- PREPARED:
# [behave]
# format = ... missing_steps ...
# output = ... features/steps/missing_steps.py ...
# [behave.formatters]
# missing_steps = behave.contrib.formatter_missing_steps:MissingStepsFormatter