demo / Makefile
niikun
first commit
980275a
raw
history blame contribute delete
206 Bytes
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest -vv test_hello.py
format:
black *.py
lint:
pylint --disable=R,C hello.py
all: install lint test format