setup.cfg 383 B

12345678910111213141516171819202122232425
  1. [coverage:run]
  2. [flake8]
  3. exclude = *.egg*,.env,.git,.tox,_*,build*,dist*,venv*,python2/,python3/
  4. ignore = E261,E731,W503
  5. max-line-length = 121
  6. [tool:pytest]
  7. minversion = 3.2
  8. addopts =
  9. --cov-config=setup.cfg
  10. --cov=httplib2
  11. --ignore=tests/_TODO_legacy/
  12. --noconftest
  13. --showlocals
  14. --strict-markers
  15. --tb=short
  16. --timeout=17
  17. --verbose
  18. -ra
  19. [egg_info]
  20. tag_build =
  21. tag_date = 0