Spaces:
Runtime error
Runtime error
File size: 303 Bytes
cdba444 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.PHONY: install style test
PYTHON := python
CHECK_DIRS := llmlingua tests
install:
@${PYTHON} setup.py bdist_wheel
@${PYTHON} -m pip install dist/sdtools*
style:
black $(CHECK_DIRS)
isort -rc $(CHECK_DIRS)
flake8 $(CHECK_DIRS)
test:
@${PYTHON} -m pytest -n auto --dist=loadfile -s -v ./tests/
|