-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to Makefile, try with "make install" or "make test"
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.DEFAULT_GOAL := help | ||
|
||
SHELL=/bin/bash | ||
|
||
UNAME=$(shell uname -s) | ||
|
||
.PHONY: install | ||
install: ## Install a virtual environment | ||
@poetry config virtualenvs.in-project true | ||
@poetry install -vv | ||
|
||
|
||
.PHONY: fmt | ||
fmt: ## Run autoformatting and linting | ||
@poetry run pre-commit run --all-files | ||
|
||
|
||
.PHONY: test | ||
test: install ## Run tests | ||
@poetry run pytest | ||
|
||
|
||
.PHONY: clean | ||
clean: ## Clean up caches and build artifacts | ||
@git clean -X -d -f | ||
|
||
|
||
.PHONY: coverage | ||
coverage: install ## test and coverage | ||
@poetry run coverage run --source=funnel/. -m pytest | ||
@poetry run coverage report -m | ||
@poetry run coverage html | ||
|
||
@if [ ${UNAME} == "Darwin" ]; then \ | ||
open htmlcov/index.html; \ | ||
elif [ ${UNAME} == "linux" ]; then \ | ||
xdg-open htmlcov/index.html 2> /dev/null; \ | ||
fi | ||
|
||
|
||
.PHONY: help | ||
help: ## Display this help screen | ||
@echo -e "\033[1mAvailable commands:\033[0m" | ||
@grep -E '^[a-z.A-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-18s\033[0m %s\n", $$1, $$2}' | sort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters