setup.cfg 342 B

123456789101112
  1. [pytest]
  2. python_files=test*.py
  3. addopts=--tb=native -p no:doctest
  4. norecursedirs=bin dist docs htmlcov script hooks node_modules .* {args}
  5. [flake8]
  6. ignore = F999,E501,E128,E124,E402,W503,E731,C901
  7. max-line-length = 100
  8. exclude = .tox,.git,*/migrations/*,node_modules/*,src/sentry/static/sentry/vendor/*,docs/*
  9. [bdist_wheel]
  10. python-tag = py27