mirror of
https://github.com/pyro2927/SouthwestCheckin.git
synced 2025-12-06 01:13:19 +00:00
18 lines
276 B
Makefile
18 lines
276 B
Makefile
all: init test lint
|
|
init:
|
|
pip install -r requirements.txt
|
|
|
|
test:
|
|
pytest --cov=southwest/ --cov=checkin
|
|
|
|
lint:
|
|
pycodestyle */*.py --show-source --ignore=E501
|
|
|
|
docker:
|
|
docker build -t pyro2927/southwestcheckin .
|
|
|
|
release:
|
|
docker push pyro2927/southwestcheckin
|
|
|
|
.PHONY: all
|