2017-05-19 18:54:05 +00:00
|
|
|
[pytest]
|
2019-11-05 18:47:15 +00:00
|
|
|
python_files = test*.py
|
2021-06-21 08:02:27 +00:00
|
|
|
norecursedirs = _instances*
|
2021-06-02 15:08:16 +00:00
|
|
|
timeout = 1800
|
2020-04-14 07:13:01 +00:00
|
|
|
junit_duration_report = call
|
2020-04-16 09:01:19 +00:00
|
|
|
junit_suite_name = integration
|
2021-07-01 14:41:59 +00:00
|
|
|
log_level = DEBUG
|
2021-07-05 08:25:58 +00:00
|
|
|
log_format = %(asctime)s [ %(process)d ] %(levelname)s : %(message)s (%(filename)s:%(lineno)s, %(funcName)s)
|
2021-07-01 14:41:59 +00:00
|
|
|
log_date_format=%Y-%m-%d %H:%M:%S
|
|
|
|
log_cli = true
|
2021-02-18 21:21:50 +00:00
|
|
|
log_cli_level = CRITICAL
|
2021-07-05 08:25:58 +00:00
|
|
|
log_cli_format = %(asctime)s [ %(process)d ] %(levelname)s : %(message)s (%(filename)s:%(lineno)s, %(funcName)s)
|
2021-07-01 14:41:59 +00:00
|
|
|
log_cli_date_format=%Y-%m-%d %H:%M:%S
|
2021-02-18 21:21:50 +00:00
|
|
|
log_file = pytest.log
|
|
|
|
log_file_level = DEBUG
|
2021-07-05 08:25:58 +00:00
|
|
|
log_file_format = %(asctime)s [ %(process)d ] %(levelname)s : %(message)s (%(filename)s:%(lineno)s, %(funcName)s)
|
2021-07-01 14:41:59 +00:00
|
|
|
log_file_date_format = %Y-%m-%d %H:%M:%S
|
2021-12-07 11:48:39 +00:00
|
|
|
markers =
|
|
|
|
long_run: marks tests which run for a long time
|
|
|
|
addopts =
|
|
|
|
-m 'not long_run'
|