-
Notifications
You must be signed in to change notification settings - Fork 212
/
Makefile
70 lines (51 loc) · 2.12 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.PHONY: clean-pyc clean-build docs clean
TEST_FLAGS=--verbose
COVER_FLAGS=--cov=organizations
help:
@perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
install: ## install all requirements including for testing
pip install -r requirements-dev.txt
install-quiet: ## same as install but pipes all output to /dev/null
pip install -r requirements-dev.txt > /dev/null
clean: clean-build clean-pyc clean-test-all ## remove all artifacts
clean-build: ## remove build artifacts
@rm -rf build/
@rm -rf dist/
@rm -rf *.egg-info
clean-pyc: ## remove Python file artifacts
-@find . -name '*.pyc' -follow -print0 | xargs -0 rm -f &> /dev/null
-@find . -name '*.pyo' -follow -print0 | xargs -0 rm -f &> /dev/null
-@find . -name '__pycache__' -type d -follow -print0 | xargs -0 rm -rf &> /dev/null
clean-test: ## remove test and coverage artifacts
rm -rf .coverage coverage*
rm -rf tests/.coverage test/coverage*
rm -rf htmlcov/
clean-test-all: clean-test ## remove all test-related artifacts including tox
rm -rf .tox/
format: ## format the code with Black
black organizations tests example test_abstract test_accounts test_custom test_vendors
lint: ## check style with flake8
flake8 organizations
test: ## run tests quickly with the default Python
pytest ${TEST_FLAGS}
test-coverage: clean-test ## run tests with coverage report
-pytest ${COVER_FLAGS} ${TEST_FLAGS}
@exit_code=$?
@-coverage html
@exit ${exit_code}
test-all: ## run tests on every Python version with tox
tox
check: clean-build clean-pyc clean-test lint test-coverage ## run all necessary steps to check validity of project
build: clean ## Create distribution files for release
# pytest -k test_no_missing_migrations
python setup.py sdist bdist_wheel
release: build ## Create distribution files and publish to PyPI
python setup.py check -r -s
twine upload dist/*
sdist: clean ## Create source distribution only
python setup.py sdist
ls -l dist
docs: ## Build and open docs
$(MAKE) -C docs clean
$(MAKE) -C docs html
open docs/_build/html/index.html