-
Daniel Meißner authoredDaniel Meißner authored
Makefile 193 B
.DEFAULT:= echo
echo:
@echo "clean | remove pyc files"
@echo "test | run tests with pytest"
clean:
find . -name "*pyc" -delete
find . -name "__pycache__" -delete
test:
py.test2 --cov