setup.cfg 389 B

12345678910111213
  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. looponfailroots = src/sentry tests
  6. [flake8]
  7. ignore = F999,E501,E128,E124,E402,W503,E731,C901
  8. max-line-length = 100
  9. exclude = .tox,.git,*/south_migrations/*,node_modules/*,src/sentry/static/sentry/vendor/*,docs/*
  10. [bdist_wheel]
  11. python-tag = py27