demo2 / Makefile
pkkn2
initial custom check in
bd3a6bf
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest -vv test_*.py
lint:
pylint --disable=R,C *.py
format:
black *.py
all: install lint test