-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
58 lines (49 loc) · 1.34 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
.DEFAULT_GOAL := about
VERSION := $(shell cat rabbit/__init__.py | grep '__version__ ' | cut -d'"' -f 2)
lint:
ifeq ($(SKIP_STYLE), )
@echo "> running isort..."
isort rabbit
isort tests
isort setup.py
@echo "> running black..."
black rabbit
black tests
black setup.py
endif
@echo "> running flake8..."
flake8 rabbit
flake8 tests
flake8 setup.py
@echo "> running mypy..."
mypy rabbit
tests:
@echo "> unittest"
python -m pytest -vv --no-cov-on-fail --color=yes --cov-report xml --cov-report term --cov=rabbit tests
docs:
@echo "> generate project documentation..."
@cp README.md docs/index.md
mkdocs serve -a 0.0.0.0:8000
install-deps:
@echo "> installing dependencies..."
uv pip install -r requirements-dev.txt
pre-commit install
tox:
@echo "> running tox..."
tox -r -p all
about:
@echo "> rabbit-client: $(VERSION)"
@echo ""
@echo "make lint - Runs: [isort > black > flake8 > mypy]"
@echo "make tox - Runs tox."
@echo "make tests - Execute tests."
@echo "make docs - Generate project documentation."
@echo "make install-deps - Install development dependencies."
@echo ""
@echo "mailto: alexandre.fmenezes@gmail.com"
ci: lint tests
ifeq ($(GITHUB_HEAD_REF), false)
codecov --file coverage.xml -t $$CODECOV_TOKEN
endif
all: install-deps ci tox docs
.PHONY: install-deps lint tests docs tox ci all