setup.cfg 243 B

12345678910111213
  1. [pytest]
  2. python_files=test*.py
  3. addopts=--tb=short
  4. timeout=5
  5. norecursedirs=node_modules .* {args}
  6. [flake8]
  7. ignore = F999,E501,E128,E124,F841
  8. max-line-length = 100
  9. exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs
  10. [wheel]
  11. universal = 1