Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
install-dev:
@echo "Installing local package..."
uv sync
uv run pre-commit install
uv run prek install
test:
@echo "Running tests..."
uv run pre-commit run --all-files
uv run prek run --all-files
uv run mypy .
# Follow the test practices recommanded by LangChain (v0.3)
# See https://python.langchain.com/docs/contributing/how_to/integrations/standard_tests/
uv run pytest --cov=src/langchain_linkup/ --cov-report term-missing --disable-socket --allow-unix-socket tests/unit_tests
uv run pytest tests/integration_tests

update-dependencies:
uv lock --upgrade
update-pre-commit-hooks:
uv run prek autoupdate --cooldown-days 14
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ dev = [
"langgraph",
"load-dotenv",
"mypy",
"pre-commit",
"prek>=0.3.5",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-mock",
"pytest-socket",
"setuptools",
"types-setuptools"
"types-setuptools",
]

[project.urls]
Expand Down
121 changes: 25 additions & 96 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading