Skip to content
Snippets Groups Projects
Makefile 187 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