2017-05-19 18:54:05 +00:00
|
|
|
[pytest]
|
2022-07-07 20:19:15 +00:00
|
|
|
python_files = test_*/test*.py
|
2021-06-21 08:02:27 +00:00
|
|
|
norecursedirs = _instances*
|
2021-12-22 11:53:40 +00:00
|
|
|
timeout = 900
|
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 =
|
2021-12-07 12:22:52 +00:00
|
|
|
-m 'not long_run'
|
2023-06-21 14:33:43 +00:00
|
|
|
; 'The asyncore module is deprecated' comes from casandra driver
|
|
|
|
filterwarnings =
|
|
|
|
ignore:The asyncore module is deprecated:DeprecationWarning
|