setup.cfg 532 B

123456789101112131415161718192021
  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. [flake8]
  17. max-line-length=120
  18. exclude=test/*,setup.py,oo-installenv
  19. ignore=E501