forked from amundsen-io/amundsensearchlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
51 lines (39 loc) · 1001 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
IMAGE := amundsendev/amundsen-search
VERSION:= $(shell grep -m 1 '__version__' setup.py | cut -d '=' -f 2 | tr -d "'" | tr -d '[:space:]')
.PHONY: test
clean:
find . -name \*.pyc -delete
find . -name __pycache__ -delete
rm -rf dist/
.PHONY: test_unit
test_unit:
python3 -bb -m pytest tests
.PHONY: lint
lint:
flake8 .
.PHONY: mypy
mypy:
mypy --ignore-missing-imports --strict-optional --warn-no-return .
.PHONY: isort
isort:
isort .
.PHONY: isort_check
isort_check:
isort ./ --check --diff
.PHONY: test
test: test_unit lint mypy isort_check
.PHONY: image
image:
docker build -f public.Dockerfile -t ${IMAGE}:latest .
.PHONY: image-version
image-version:
docker build -f public.Dockerfile -t ${IMAGE}:${VERSION} .
.PHONY: push-image-version
push-image-version:
docker push ${IMAGE}:${VERSION}
.PHONY: push-image
push-image:
docker push ${IMAGE}:latest
.PHONY: build-push-image
build-push-image-latest: image push-image
build-push-image-version: image-version push-image-version