Spaces:
Configuration error
Configuration error
.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" | |