LLM_Search_Engine / Makefile
sofarikasid's picture
Synced repo using 'sync_with_huggingface' Github Action
e67fa80
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest test_search.py
format:
black *.py
black mylib/*.py
lint:
pylint --disable=R,C,W0108 mylib/*.py
#all: install lint test
all: install lint test format