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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync
run: uv sync --all-packages

- name: Generate proto stubs
run: uv run make proto
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Install + generate proto
run: |
uv sync
uv sync --all-packages
uv run make proto

- name: Integration tests
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ lint:
ruff format --check coordinode/ langchain-coordinode/ llama-index-coordinode/ tests/

clean:
rm -rf $(PROTO_OUT)/coordinode
rm -rf $(PROTO_OUT)
find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true
find . -type d -name "*.egg-info" -exec rm -rf {} + 2>/dev/null || true
find . -type d -name dist -exec rm -rf {} + 2>/dev/null || true
2 changes: 0 additions & 2 deletions coordinode/_proto/__init__.py

This file was deleted.

7 changes: 6 additions & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ target-version = "py311"

exclude = [
# Generated proto stubs — do not lint
"coordinode/_proto/",
"coordinode/coordinode/_proto/",
# Generated version files — do not lint
"**/_version.py",
]

[lint]
select = ["E", "F", "I", "W", "UP"]
ignore = [
"E501", # line length handled by formatter
]

[lint.isort]
known-first-party = ["coordinode", "langchain_coordinode", "llama_index_coordinode"]
Loading