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.
 
 
 

60 lines
1.4 KiB

  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=nilmdb
  12. cover-erase=1
  13. # this works, puts html output in cover/ dir:
  14. # cover-html=1
  15. #debug=nose
  16. #debug-log=nose.log
  17. stop=1
  18. verbosity=2
  19. tests=tests
  20. #tests=tests/test_threadsafety.py
  21. #tests=tests/test_bulkdata.py
  22. #tests=tests/test_mustclose.py
  23. #tests=tests/test_lrucache.py
  24. #tests=tests/test_cmdline.py
  25. #tests=tests/test_layout.py
  26. #tests=tests/test_rbtree.py
  27. #tests=tests/test_interval.py
  28. #tests=tests/test_rbtree.py,tests/test_interval.py
  29. #tests=tests/test_interval.py
  30. #tests=tests/test_client.py
  31. #tests=tests/test_timestamper.py
  32. #tests=tests/test_serializer.py
  33. #tests=tests/test_iteratorizer.py
  34. #tests=tests/test_client.py:TestClient.test_client_nilmdb
  35. #tests=tests/test_nilmdb.py
  36. #with-profile=1
  37. #profile-sort=time
  38. ##profile-restrict=10 # doesn't work right, treated as string or something
  39. [versioneer]
  40. VCS=git
  41. style=pep440
  42. versionfile_source=nilmdb/_version.py
  43. versionfile_build=nilmdb/_version.py
  44. tag_prefix=nilmdb-
  45. parentdir_prefix=nilmdb-
  46. [flake8]
  47. exclude=_version.py
  48. extend-ignore=E731
  49. per-file-ignores=__init__.py:F401,E402 \
  50. serializer.py:E722 \
  51. mustclose.py:E722 \
  52. fsck.py:E266
  53. [pylint]
  54. ignore=_version.py
  55. disable=C0103,C0111,R0913,R0914