setup.cfg 486 B

123456789101112131415161718
  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_package=ooinstall
  12. cover_min_percentage=70
  13. [flake8]
  14. max-line-length=120
  15. exclude=tests/*,setup.py
  16. ignore=E501,E121,E124