nilmdb/Makefile
Jim Paris 2f2faeeab7 Add pylint config and selectively fix some pylint errors
Some pylint errors are worth fixing; many are not.
2019-08-30 16:29:39 -04:00

51 lines
889 B
Makefile

# By default, run the tests.
all: test
version:
python3 setup.py version
build:
python3 setup.py build_ext --inplace
dist: sdist
sdist:
python3 setup.py sdist
install:
python3 setup.py install
develop:
python3 setup.py develop
docs:
make -C docs
ctrl: flake
flake:
flake8 nilmdb
lint:
pylint3 --rcfile=setup.cfg nilmdb
test:
ifneq ($(INSIDE_EMACS),)
# Use the slightly more flexible script
python3 setup.py build_ext --inplace
python3 tests/runtests.py
else
# Let setup.py check dependencies, build stuff, and run the test
python3 setup.py nosetests
endif
clean::
find . -name '*.pyc' -o -name '__pycache__' -print0 | xargs -0 rm -rf
rm -f .coverage
rm -rf tests/*testdb*
rm -rf nilmdb.egg-info/ build/ nilmdb/server/*.so
make -C docs clean
gitclean::
git clean -dXf
.PHONY: all version build dist sdist install docs test
.PHONY: ctrl lint flake clean gitclean