1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- [bdist_wheel]
- universal=1
- [metadata]
- license_file = LICENSE
- [tool:pytest]
- addopts =
- -vvl
- --strict
- --capture fd
- --tb short
- --pythonwarnings error::flaskbb.deprecation.FlaskBBDeprecation
- --cov flaskbb
- --cov-config setup.cfg
- --cov-append
- norecursedirs = node_modules
- [tool:isort]
- lines_after_imports=2
- skip_glob=20??????????_*_*.py, node_modules, .tox, docs, build, dist
- not_skip=__init__.py
- known_first_party=flaskbb
- use_parentheses=true
- [flake8]
- ignore = E203, E712, E711, W503
- select = C,E,F,W,B,B9
- max-complexity = 10
- max-line-length = 80
- exclude =
- flaskbb/configs/default.py,
- flaskbb/_compat.py,
- migrations,
- node_modules,
- .git,
- .tox,
- *.pyc,
- __pycache__,
- instance,
- dist,
- build,
- docs
- [coverage:run]
- branch = true
- source = flaskbb
- omit =
- flaskbb/_compat.py
- flaskbb/configs/*
- parallel = true
- [coverage:paths]
- source =
- flaskbb/
- .tox/*/lib/*/site-packages/flaskbb/
- [coverage:report]
- exclude_lines =
- pragma: no cover
- def __repr__
- if self\.debug
- raise AssertionError
- raise NotImplementedError
- if 0:
- if __name__ == .__main__.:
- @abstractmethod
- ignore_errors = True
- precision = 2
- show_missing = true
- [coverage:html]
- directory = tests/htmlcov
|