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.
 
 
 

50 lines
1.3 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. # 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. #tests=tests/test_threadsafety.py
  23. #tests=tests/test_bulkdata.py
  24. #tests=tests/test_mustclose.py
  25. #tests=tests/test_lrucache.py
  26. #tests=tests/test_cmdline.py
  27. #tests=tests/test_layout.py
  28. #tests=tests/test_rbtree.py
  29. #tests=tests/test_interval.py
  30. #tests=tests/test_rbtree.py,tests/test_interval.py
  31. #tests=tests/test_interval.py
  32. #tests=tests/test_client.py
  33. #tests=tests/test_timestamper.py
  34. #tests=tests/test_serializer.py
  35. #tests=tests/test_iteratorizer.py
  36. #tests=tests/test_client.py:TestClient.test_client_nilmdb
  37. #tests=tests/test_nilmdb.py
  38. #with-profile=1
  39. #profile-sort=time
  40. ##profile-restrict=10 # doesn't work right, treated as string or something
  41. [versioneer]
  42. VCS=git
  43. style=pep440
  44. versionfile_source=nilmdb/_version.py
  45. versionfile_build=nilmdb/_version.py
  46. tag_prefix=nilmdb-
  47. parentdir_prefix=nilmdb-