forked from behave/behave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
behave.ini
42 lines (39 loc) · 1.38 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
# =============================================================================
# BEHAVE CONFIGURATION
# =============================================================================
# FILE: .behaverc, behave.ini, setup.cfg, tox.ini
#
# 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 = -@xfail -@not_implemented
show_skipped = false
format = rerun
progress3
outfiles = rerun.txt
reports/report_progress3.txt
junit = true
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:
# 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
[behave.formatters]
allure = allure_behave.formatter:AllureFormatter
# PREPARED:
# [behave]
# format = ... missing_steps ...
# output = ... features/steps/missing_steps.py ...
# [behave.formatters]
# missing_steps = behave.contrib.formatter_missing_steps:MissingStepsFormatter