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