James Espichan Vilca
fixing branch
1091b7f
raw
history blame
218 Bytes
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest -vv --cov=hello test_hello.py
format:
black *.py
lint:
pylint --disable=R,C hello.py
all: install lint test format