13 lines
419 B
INI
13 lines
419 B
INI
[pytest]
|
|
testpaths = tests
|
|
pythonpath = .
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
log_file = logs/test_logs.log
|
|
log_file_level = INFO
|
|
log_file_format = %(asctime)s %(levelname)s %(message)s
|
|
log_file_date_format = %Y-%m-%d %H:%M:%S
|
|
# Only run non-expensive tests by default, verbose log, short traceback
|
|
# Use 'pytest -m ""' to run ALL tests.
|
|
addopts = -v --tb=short -m 'not expensive'
|