-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmakefile
25 lines (24 loc) · 980 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.PHONY: help
help: ## Show this help
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
init: ## Install package dependencies
pip install --upgrade pip
# install package and dev dependencies (see setup.py)
pip install '.[test]'
test: ## Run package tests
python -m pytest tests
ci: ## [CI] Run package tests and lint
make test
make lint
lint: ## Run code linting
python -m flake8 src/exceptionite --ignore=E501,F401,E203,E128,E402,E731,F821,E712,W503,F811
format: ## Format code with Black
black src/exceptionite
coverage: ## Run package tests and upload coverage reports
python -m pytest --cov-report term --cov-report xml --cov=src/masonite/exceptionite tests
publish: ## Publish package to pypi
python setup.py sdist bdist_wheel
twine upload dist/*
rm -fr build dist .egg src/exceptionite.egg-info
pypirc: ## Copy the template .pypirc in the repo to your home directory
cp .pypirc ~/.pypirc