demo / Makefile
Judicael Mahoutin DJIDONOU
First commit
8828ac1
raw
history blame contribute delete
433 Bytes
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
# test:
# python -m pytest -vv --cov=main --cov=mylib test_*.py
format:
black *.py
run:
python app.py
# lint:
# pylint --disable=R,C --ignore-patterns=test_.*?py *.py mylib/*.py
# container-lint:
# docker run --rm -i hadolint/hadolint < Dockerfile
# refactor: format lint
# deploy:
# #deploy goes here
# all: install lint test format deploy