hotcooler/setup.cfg

26 lines
630 B
INI
Raw Normal View History

[tool:pytest]
addopts =
--strict
-p websauna.tests.fixtures
--splinter-make-screenshot-on-failure=false
--ini=hotcooler/conf/test.ini
hotcooler/tests
# E501: Line too long
# E128: continuation line under
# E731: http://stackoverflow.com/q/25010167/315168
pep8ignore = E501 E128 E731
# Don't let py.test scan py.files in these folders
norecursedirs = alembic .tox .cache .eggs venv
# Add some default py.test markers
# Slow marker is for tests taking > 15 seconds to complete.
# Fail marker signals the test is expected to fail.
markers =
slow
fail
[flake8]
ignore = E128 E731_
max-line-length = 999