Kpenciler's picture
Upload 53 files
88435ed verified
raw
history blame contribute delete
309 Bytes
.PHONY: lint
lint: ## run tests with poetry (isort, black, pflake8, mypy)
poetry run black neollm
poetry run isort neollm
poetry run pflake8 neollm
poetry run mypy neollm --explicit-package-bases
.PHONY: test
test:
poetry run pytest
.PHONY: unit-test
unit-test:
poetry run pytest -k "not test_neollm"