-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
42 lines (34 loc) · 1.06 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
## The Makefile includes instructions on environment setup and lint tests
# Create and activate a virtual environment
# Install dependencies in requirements.txt
# Dockerfile should pass hadolint
# app.py should pass pylint
# (Optional) Build a simple integration test
setup:
# Create python virtualenv & source it
python3 -m venv ~/.ml
source ~/.ml/bin/activate
install:
# This should be run from inside a virtualenv
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
# Additional, optional, tests could go here
# python -m pytest -vv --cov=myrepolib tests/*.py
python -m pytest --nbval model_data/notebook.ipynb
lint:
# https://github.com/hadolint/hadolint
# This is linter for Dockerfiles
hadolint Dockerfile
# This is a linter for Python source code linter: https://www.pylint.org/
# This should be run from inside a virtualenv
pylint --disable=R,C,W1203,W1202 app.py
docker:
# build, list and run docker image
./run_docker.sh
push:
# puh docker image to docker hub
./upload_docker.sh
predict:
./make_prediction.sh
all: install lint test