Spaces:
Configuration error
Configuration error
File size: 309 Bytes
88435ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
.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"
|