tox.ini 350 B

12345678910111213141516171819202122
  1. [tox]
  2. envlist = py27,py36
  3. [testenv]
  4. deps = -rrequirements-dev.txt
  5. whitelist_externals = make
  6. commands = py.test
  7. [flake8]
  8. ignore = E712, E711, C901
  9. exclude =
  10. .git,
  11. __pycache__,
  12. docs/source/conf.py,
  13. migrations,
  14. flaskbb/configs,
  15. flaskbb/fixtures,
  16. flaskbb/_compat.py,
  17. build,
  18. dist,
  19. *.egg-info
  20. max-complexity = 10