You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.cfg 798 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [aliases]
  2. test = nosetests
  3. [nosetests]
  4. # Note: values must be set to 1, and have no comments on the same line,
  5. # for "python setup.py nosetests" to work correctly.
  6. nocapture=1
  7. # Comment this out to see CherryPy logs on failure:
  8. nologcapture=1
  9. with-coverage=1
  10. cover-inclusive=1
  11. cover-package=nilmtools
  12. cover-erase=1
  13. # this works, puts html output in cover/ dir:
  14. # cover-html=1
  15. # need nose 1.1.3 for this:
  16. # cover-branches=1
  17. #debug=nose
  18. #debug-log=nose.log
  19. stop=1
  20. verbosity=2
  21. tests=tests
  22. [versioneer]
  23. VCS=git
  24. style=pep440
  25. versionfile_source=nilmtools/_version.py
  26. versionfile_build=nilmtools/_version.py
  27. tag_prefix=nilmtools-
  28. parentdir_prefix=nilmtools-
  29. [flake8]
  30. exclude=_version.py
  31. extend-ignore=E731
  32. per-file-ignores=math.py:F403,F405
  33. [pylint]
  34. ignore=_version.py
  35. disable=C0103,C0111,R0913,R0914