setup.cfg 865 B

1234567891011121314151617181920212223242526272829303132333435
  1. [bdist_wheel]
  2. # This flag says that the code is written to work on both Python 2 and Python
  3. # 3. If at all possible, it is good practice to do this. If you cannot, you
  4. # will need to generate wheels for each Python version that you support.
  5. universal=1
  6. [yamllint]
  7. excludes=.tox,utils,files
  8. [lint]
  9. lint_disable=fixme,locally-disabled,file-ignored,duplicate-code
  10. [flake8]
  11. exclude=.tox/*,utils/*,inventory/*
  12. max_line_length = 120
  13. ignore = E501,T003
  14. [tool:pytest]
  15. norecursedirs =
  16. .*
  17. __pycache__
  18. cover
  19. docs
  20. # utils have its own config
  21. utils
  22. python_files =
  23. # TODO(rhcarvalho): rename test files to follow a single pattern. "test*.py"
  24. # is Python unittest's default, while pytest discovers both "test_*.py" and
  25. # "*_test.py" by default.
  26. test_*.py
  27. *_tests.py
  28. addopts =
  29. --cov=.
  30. --cov-report=term
  31. --cov-report=html