-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
33 lines (28 loc) · 1.19 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
## 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
source /Users/muhammadabiodunsulaiman/Documents/DevProjects/digiLocker_projects/digiLocker_mod/venv/bin/activate
#python3 -m venv ~/.project4
install:
# This should be run from inside a virtualenv
pip install --no-cache-dir --upgrade pip \
&& pip3 install --no-cache-dir -r requirements.txt
#wget -O ./hadolint https://github.com/hadolint/hadolint/releases/download/v1.16.3/hadolint-Linux-x86_64 &&\
# chmod +x ./hadolint
test:
# Additional, optional, tests could go here
#python -m pytest -vv --cov=myrepolib tests/*.py
#python -m pytest --nbval notebook.ipynb
lint:
# See local hadolint install instructions: 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 app.py
all: install lint test