BW3-Core/_gen/pytest.ini

24 lines
845 B
INI
Raw Normal View History

# -*- coding: utf-8 -*-
# ____ ____ ______ __ __ __ _____
# / __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
# / __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
# / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
#/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
# German BOS Information Script
# by Bastian Schroll
[pytest]
2018-09-14 13:56:33 +02:00
addopts = -v --pep8 --cov=boswatch/ --cov-report=term-missing --log-level=CRITICAL
2018-01-08 16:35:16 +01:00
# classic or progress
console_output_style = progress
2018-01-04 23:20:07 +01:00
log_file=log/test.log
log_file_level=debug
log_file_format=%(asctime)s - %(module)-12s %(funcName)-15s [%(levelname)-8s] %(message)s
log_file_date_format=%d.%m.%Y %H:%M:%S
#pep8 plugin
pep8ignore = E402, E501 # import not at top
# E501 # line too long
# pep8maxlinelength = 99