-
Notifications
You must be signed in to change notification settings - Fork 1
/
pytest.ini
49 lines (42 loc) · 2.6 KB
/
pytest.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
[pytest]
# для использования альтернативного файла `.pytest.ini` локально, указать в команде запуска: `pytest -c .pytest.ini`
# для переопределения существующих в `pytest.ini` ключей в команде запуска: `pytest -o log_cli=<new_value>`
# для добавления/переопределения параметров ключа `addopts` в команде запуска: `pytest --color=<new_value>`
console_output_style = count
addopts = -vvv --capture=tee-sys -p no:faulthandler
--strict-markers
--color=yes
# --alluredir allure-results --clean-alluredir
# установить `--color=no` для запуска с параметром `--alluredir`
# у цветных строк лога имеются артефакты в отчете Allure: https://github.com/allure-framework/allure-python/issues/806
# Флаг: Не экранировать название шагов на кириллице для параметризованных тестов (ids)
disable_test_id_escaping_and_forfeit_all_rights_to_community_support = true
xfail_strict = true
usefixtures = log_dispatcher
required_plugins = allure-pytest pytest-xdist
testpaths = tests
filterwarnings =
always::DeprecationWarning
ignore:pyee.AsyncIOEventEmitter:DeprecationWarning
ignore:Unverified HTTPS request:urllib3.connectionpool.InsecureRequestWarning
# установить `log_cli = True` для вывода`Allure steps` в консоли
log_cli = true
log_cli_level = INFO
log_auto_indent = true
log_format = [%(levelname)-7s] %(name)-8s %(asctime)s - %(filename)16s:%(lineno)-4s - %(message)s
log_date_format = %Y-%m-%d %H:%M:%S
log_file_format = [%(levelname)-8s] %(name)-8s %(asctime)s - %(filename)16s:%(lineno)-4s - %(message)s
log_file_date_format = %Y-%m-%d %H:%M:%S
markers =
allure_combo_report : признак объединения тестовых функций под одним заголовком в Allure отчете `Behaviors`
smoke : смоук тесты
positive : позитивные тесты
negative : негативные тесты
pet : тесты ручки /pet
store : тесты ручки /store
user : тесты ручки /user
POST : тесты POST
GET : тесты GET
PUT : тесты PUT
PATCH : тесты PATCH
DELETE : тесты DELETE