setup.cfg 642 B

123456789101112131415161718192021222324252627
  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/openshift_master_facts/test/, test/
  8. verbosity=2
  9. with-coverage=1
  10. cover-html=1
  11. cover-inclusive=1
  12. cover-min-percentage=70
  13. cover-erase=1
  14. detailed-errors=1
  15. cover-branches=1
  16. [yamllint]
  17. excludes=.tox,utils,files
  18. [lint]
  19. lint_disable=fixme,locally-disabled,file-ignored,duplicate-code
  20. [flake8]
  21. exclude=.tox/*,utils/*,inventory/*
  22. max_line_length = 120
  23. ignore = E501,T003