# self-documentation magic: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help: ## Display the list of available targets
	@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'


test-support: export PYTHONPATH=$(PWD)/support
test-support:  ## run the support tests
	pytest -vvs --rootdir $(PWD)/support --confcutdir $(PWD)/support support/tests
