Space1 / Makefile
akul-29's picture
adding the files
863d43f
raw
history blame contribute delete
228 Bytes
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest -vv *.py dblib
format:
black *.py
lint:
pylint --disable=R,C --ignore-patterns=test_.*?py *.py dblib
all: install lint test