-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (27 loc) · 1008 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
26
27
28
29
30
31
32
33
34
35
36
37
tests: ## Make unit tests
python -m pytest -v airflow_pm2 --cov=airflow_pm2 --junitxml=python_junit.xml --cov-report=xml --cov-branch
lint: ## run linter
python -m flake8 airflow_pm2 setup.py
fix: ## run black fix
python -m black airflow_pm2/ setup.py
clean: ## clean the repository
find . -name "__pycache__" | xargs rm -rf
find . -name "*.pyc" | xargs rm -rf
rm -rf .coverage cover htmlcov logs build dist *.egg-info
install: ## install to site-packages
python -m pip install .
dev:
python -m pip install .[dev]
dist: ## create dists
rm -rf dist build
python setup.py sdist bdist_wheel
python -m twine check dist/*
publish: dist ## dist to pypi
python -m twine upload dist/* --skip-existing
# Thanks to Francoise at marmelab.com for this
.DEFAULT_GOAL := help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
print-%:
@echo '$*=$($*)'
.PHONY: clean test tests help lint fix dist