Jim Paris
e5d3deb6fe
`nrows` may change if you restart the server; documented why this is the case in the design.md file. It's not a problem.
24 lines
338 B
Makefile
24 lines
338 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
|
|
|
|
%.html: %.md
|
|
pandoc -s $< > $@
|
|
|
|
test:
|
|
python runtests.py
|
|
|
|
profile:
|
|
python runtests.py --with-profile
|
|
|
|
clean::
|
|
find . -name '*pyc' | xargs rm -f
|
|
rm -f .coverage
|
|
rm -rf tests/*testdb*
|