|
|
@@ -1,16 +1,23 @@ |
|
|
|
[aliases] |
|
|
|
test = nosetests |
|
|
|
|
|
|
|
[nosetests] |
|
|
|
# note: the value doesn't matter, that's why they're empty here |
|
|
|
nocapture= |
|
|
|
nologcapture= # comment to see cherrypy logs on failure |
|
|
|
with-coverage= |
|
|
|
cover-inclusive= |
|
|
|
# Note: values must be set to 1, and have no comments on the same line, |
|
|
|
# for "python setup.py nosetests" to work correctly. |
|
|
|
nocapture=1 |
|
|
|
# Comment this out to see CherryPy logs on failure: |
|
|
|
nologcapture=1 |
|
|
|
with-coverage=1 |
|
|
|
cover-inclusive=1 |
|
|
|
cover-package=nilmdb |
|
|
|
cover-erase= |
|
|
|
##cover-html= # this works, puts html output in cover/ dir |
|
|
|
##cover-branches= # need nose 1.1.3 for this |
|
|
|
cover-erase=1 |
|
|
|
# this works, puts html output in cover/ dir: |
|
|
|
# cover-html=1 |
|
|
|
# need nose 1.1.3 for this: |
|
|
|
# cover-branches=1 |
|
|
|
#debug=nose |
|
|
|
#debug-log=nose.log |
|
|
|
stop= |
|
|
|
stop=1 |
|
|
|
verbosity=2 |
|
|
|
tests=tests |
|
|
|
#tests=tests/test_bulkdata.py |
|
|
@@ -28,6 +35,6 @@ tests=tests |
|
|
|
#tests=tests/test_iteratorizer.py |
|
|
|
#tests=tests/test_client.py:TestClient.test_client_nilmdb |
|
|
|
#tests=tests/test_nilmdb.py |
|
|
|
#with-profile= |
|
|
|
#with-profile=1 |
|
|
|
#profile-sort=time |
|
|
|
##profile-restrict=10 # doesn't work right, treated as string or something |