mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-21 00:05:23 -04:00
279daf1582
Create initial clients without codegen
23 lines
329 B
Makefile
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
|