-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
52 lines (42 loc) · 1.03 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
.PHONY: init
init:
poetry env use $(shell pyenv which python) && \
poetry install
.PHONY: pytest
pytest:
poetry run pytest -vv $(ARGS)
.PHONY: test
test:
poetry run pytest $(ARGS)
.PHONY: pdb
pdb:
poetry run pytest --pdb $(ARGS)
.PHONY: mypy
mypy:
poetry run mypy --ignore-missing-imports apihub
.PHONY: result
result:
PYTHONPATH=../pipeline/src poetry run python apihub/result.py \
--in-kind FILE --in-filename tests/fixtures/result_input.txt \
--out-kind FILE --out-filename - \
--debug
.PHONY: redis-result
redis-result:
PYTHONPATH=../pipeline/src poetry run python apihub/result.py \
--in-kind LREDIS --in-redis redis://localhost:6379/1 \
--in-topic result --in-namespace apihub \
--debug
.PHONY: server
server:
PYTHONPATH=../pipeline/src poetry run python apihub/server.py \
--out-kind LREDIS --debug
.PHONY: image
TAG ?= latest
image:
docker build -t apihub:$(TAG) -f ./Dockerfile .
.PHONY: pre-commit
pre-commit:
pre-commit run --all-files
.PHONY: clean
clean:
find . -name '__pycache__' -exec rm -rf {} +