-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
140 lines (110 loc) · 3.99 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
PIPELINE_FAMILY := oer
PIPELINE_PACKAGE := oer
PACKAGE_NAME := prepline_${PIPELINE_PACKAGE}
PIP_VERSION := 23.1.2
.PHONY: help
help: Makefile
@sed -n 's/^\(## \)\([a-zA-Z]\)/\2/p' $<
###########
# Install #
###########
## install-base: installs minimum requirements to run the API
.PHONY: install-base
install-base: install-base-pip-packages
## install: installs all test and dev requirements
.PHONY: install
install: install-base install-detectron2 install-test install-dev
.PHONY: install-base-pip-packages
install-base-pip-packages:
python3 -m pip install pip==${PIP_VERSION}
pip install -r requirements/base.txt
.PHONY: install-test
install-test:
pip install -r requirements/test.txt
.PHONY: install-dev
install-dev:
pip install -r requirements/dev.txt
.PHONY: install-ci
install-ci: install-base install-test install-detectron2
.PHONY: install-detectron2
install-detectron2:
pip install "detectron2@git+https://github.com/facebookresearch/detectron2.git@e2ce8dc#egg=detectron2"
## pip-compile: compiles all base/dev/test requirements
.PHONY: pip-compile
pip-compile:
pip-compile --upgrade requirements/base.in
pip-compile --upgrade requirements/dev.in
pip-compile --upgrade requirements/test.in
#########
# Build #
#########
## docker-build: builds the docker container for the pipeline
.PHONY: docker-build
docker-build:
BUILD_TYPE="" PIP_VERSION=${PIP_VERSION} PIPELINE_FAMILY=${PIPELINE_FAMILY} ./scripts/docker-build.sh
## generate-api: generates the FastAPI python APIs from notebooks
.PHONY: generate-api
generate-api:
PYTHONPATH=. unstructured_api_tools convert-pipeline-notebooks \
--input-directory ./pipeline-notebooks \
--output-directory ./${PACKAGE_NAME}/api
#########
# Local #
########
## run-jupyter: starts jupyter notebook
.PHONY: run-jupyter
run-jupyter:
PYTHONPATH=$(realpath .) JUPYTER_PATH=$(realpath .) jupyter-notebook --NotebookApp.token='' --NotebookApp.password=''
## run-web-app: runs the FastAPI api with hot reloading
.PHONY: run-web-app
run-web-app:
PYTHONPATH=$(realpath .) uvicorn ${PACKAGE_NAME}.api.raters:app --log-config logger_config.yaml --reload
#################
# Test and Lint #
#################
## test: runs core tests
.PHONY: test
test:
PYTHONPATH=. pytest test_${PIPELINE_PACKAGE} --cov=${PACKAGE_NAME} --cov-report term-missing
.PHONY: check-coverage
check-coverage:
coverage report --fail-under=90
## test-integration: runs integration tests
.PHONY: test-integration
test-integration:
PYTHONPATH=. pytest test_${PIPELINE_PACKAGE}_integration
## api-check: verifies auto-generated pipeline APIs match the existing ones
.PHONY: api-check
api-check:
PYTHONPATH=. PACKAGE_NAME=${PACKAGE_NAME} ./scripts/test-doc-pipeline-apis-consistent.sh
## check: runs linters (includes tests)
.PHONY: check
check: check-src check-tests
## check-src: runs linters (source only, no tests)
.PHONY: check-src
check-src:
black --line-length 100 ${PACKAGE_NAME} --check --exclude ${PACKAGE_NAME}/api
flake8 ${PACKAGE_NAME}
mypy ${PACKAGE_NAME} --ignore-missing-imports --install-types --non-interactive --implicit-optional
.PHONY: check-tests
check-tests:
black --line-length 100 test_${PIPELINE_PACKAGE} --check
flake8 test_${PIPELINE_PACKAGE}
## tidy: run black
.PHONY: tidy
tidy:
black --line-length 100 ${PACKAGE_NAME}
black --line-length 100 test_${PIPELINE_PACKAGE}
## check-scripts: run shellcheck
.PHONY: check-scripts
check-scripts:
# Fail if any of these files have warnings
scripts/shellcheck.sh
## check-notebooks: check that executing and cleaning notebooks doesn't produce changes
.PHONY: check-notebooks
check-notebooks:
scripts/check-and-format-notebooks.py --check
## tidy-notebooks: execute notebooks and remove metadata
.PHONY: tidy-notebooks
tidy-notebooks:
scripts/check-and-format-notebooks.py