Jim Paris
7bba4a80d9
handling of bad URLs git-svn-id: https://bucket.mit.edu/svn/nilm/nilmdb@10676 ddd99763-3ecb-0310-9145-efcb8ce7c51f
21 lines
288 B
Makefile
21 lines
288 B
Makefile
all: test
|
|
|
|
tool:
|
|
python nilmtool.py --help
|
|
python nilmtool.py list --help
|
|
python nilmtool.py -u asfdadsf list
|
|
|
|
lint:
|
|
pylint -f parseable nilmdb
|
|
|
|
test:
|
|
nosetests
|
|
|
|
profile:
|
|
nosetests --with-profile
|
|
|
|
clean::
|
|
find . -name '*pyc' | xargs rm -f
|
|
rm -f .coverage
|
|
rm -rf tests/*testdb*
|