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 840 B

1234567891011121314151617181920212223242526
  1. [nosetests]
  2. # note: the value doesn't matter, that's why they're empty here
  3. nocapture=
  4. nologcapture= # comment to see cherrypy logs on failure
  5. with-coverage=
  6. cover-inclusive=
  7. cover-package=nilmdb
  8. cover-erase=
  9. ##cover-html= # this works, puts html output in cover/ dir
  10. ##cover-branches= # need nose 1.1.3 for this
  11. stop=
  12. verbosity=2
  13. #tests=tests/test_cmdline.py
  14. #tests=tests/test_layout.py
  15. #tests=tests/test_rbtree.py
  16. #tests=tests/test_interval.py
  17. tests=tests/test_rbtree.py,tests/test_interval.py
  18. #tests=tests/test_interval.py
  19. #tests=tests/test_client.py
  20. #tests=tests/test_timestamper.py
  21. #tests=tests/test_serializer.py
  22. #tests=tests/test_iteratorizer.py
  23. #tests=tests/test_client.py:TestClient.test_client_nilmdb
  24. #with-profile=
  25. #profile-sort=time
  26. ##profile-restrict=10 # doesn't work right, treated as string or something