mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-21 00:05:23 -04:00
24 lines
344 B
Makefile
24 lines
344 B
Makefile
.PHONY: tests lint format
|
|
|
|
tests:
|
|
poetry run pytest tests/unit_tests
|
|
|
|
integration_tests:
|
|
poetry run pytest tests/integration_tests
|
|
|
|
lint:
|
|
poetry run ruff .
|
|
poetry run mypy .
|
|
poetry run black . --check
|
|
|
|
format:
|
|
poetry run ruff format .
|
|
poetry run ruff --fix .
|
|
poetry run black .
|
|
|
|
build:
|
|
poetry build
|
|
|
|
publish:
|
|
poetry publish --dry-run
|