mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
25 lines
934 B
INI
25 lines
934 B
INI
[pytest]
|
|
python_files = test_*/test*.py
|
|
norecursedirs = _instances*
|
|
timeout = 900
|
|
junit_duration_report = call
|
|
junit_suite_name = integration
|
|
log_level = DEBUG
|
|
log_format = %(asctime)s [ %(process)d ] %(levelname)s : %(message)s (%(filename)s:%(lineno)s, %(funcName)s)
|
|
log_date_format=%Y-%m-%d %H:%M:%S
|
|
log_cli = true
|
|
log_cli_level = CRITICAL
|
|
log_cli_format = %(asctime)s [ %(process)d ] %(levelname)s : %(message)s (%(filename)s:%(lineno)s, %(funcName)s)
|
|
log_cli_date_format=%Y-%m-%d %H:%M:%S
|
|
log_file = pytest.log
|
|
log_file_level = DEBUG
|
|
log_file_format = %(asctime)s [ %(process)d ] %(levelname)s : %(message)s (%(filename)s:%(lineno)s, %(funcName)s)
|
|
log_file_date_format = %Y-%m-%d %H:%M:%S
|
|
markers =
|
|
long_run: marks tests which run for a long time
|
|
addopts =
|
|
-m 'not long_run'
|
|
; 'The asyncore module is deprecated' comes from casandra driver
|
|
filterwarnings =
|
|
ignore:The asyncore module is deprecated:DeprecationWarning
|