setup.cfg 803 B

12345678910111213141516171819202122232425262728293031
  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. [nosetests]
  7. tests=roles/lib_openshift/src/test/unit,
  8. roles/lib_utils/src/test/unit,
  9. roles/openshift_master_facts/test,
  10. test
  11. exe=1 # TODO(rhcarvalho): unset executable bits in test files and remove this
  12. verbosity=2
  13. with-coverage=1
  14. cover-html=1
  15. cover-inclusive=1
  16. cover-min-percentage=70
  17. cover-erase=1
  18. detailed-errors=1
  19. cover-branches=1
  20. [yamllint]
  21. excludes=.tox,utils,files
  22. [lint]
  23. lint_disable=fixme,locally-disabled,file-ignored,duplicate-code
  24. [flake8]
  25. exclude=.tox/*,utils/*,inventory/*
  26. max_line_length = 120
  27. ignore = E501,T003