setup.cfg 521 B

1234567891011121314151617181920212223242526272829
  1. [tox]
  2. envlist = py27,py36
  3. [testenv]
  4. deps = -rrequirements-dev.txt
  5. whitelist_externals = make
  6. commands = py.test
  7. [tool:pytest]
  8. norecursedirs = docs flaskbb logs migrations whoosh_index
  9. addopts = -vvl --strict --cov=flaskbb --cov-report=term-missing tests
  10. [flake8]
  11. ignore = E712, E711, C901
  12. exclude =
  13. .git,
  14. __pycache__,
  15. docs/source/conf.py,
  16. migrations,
  17. flaskbb/configs,
  18. flaskbb/fixtures,
  19. flaskbb/_compat.py,
  20. build,
  21. dist,
  22. *.egg-info
  23. max-complexity = 10
  24. [bdist_wheel]
  25. universal=1