13 lines
156 B
Makefile
13 lines
156 B
Makefile
all: test
|
|
|
|
lint:
|
|
pylint -f parseable nilmdb
|
|
|
|
test:
|
|
python runtests.py
|
|
|
|
clean::
|
|
find . -name '*pyc' | xargs rm -f
|
|
rm -f .coverage
|
|
rm -rf tests/*testdb*
|