help:
	@echo 'Available targets:'
	@awk -F ':|##' '/^[^\t].+?:.*?##/ {printf "%-15s %s\n", $$1, $$NF}' $(MAKEFILE_LIST)

test: ## Run all tests, needs to be run after make test-data
	nosetests

test-coverage: ## Run tests and compute code coverage
	nosetests --with-cov --cov-report html --cov-config tox.ini

test-data: ## Prepare test data
	bash tests/specs/build.sh


.PHONY: help test test-data
