Files
langsmith-sdk-christopher/python/Makefile
T
Zander Chase 279daf1582 Create Initial Clients (#1)
Create initial clients without codegen
2023-06-01 05:29:56 -07:00

23 lines
329 B
Makefile

.PHONY: tests lint format
tests:
poetry run pytest tests/unit_tests
integration_tests:
poetry run pytest tests/integration_tests
lint:
poetry run mypy .
poetry run black . --check
poetry run ruff .
format:
poetry run black .
poetry run ruff --select I --fix .
build:
poetry build
publish:
poetry publish --dry-run