You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,14 @@ uv run coverage html # Generate HTML report in htmlcov/
23
23
uv run ruff check --fix .&& uv run ruff format .&& uv run mypy vgi/
24
24
```
25
25
26
+
Before running `pytest`, you must run ruff's check and fix commands, otherwise fixing problems
27
+
takes longer:
28
+
29
+
```bash
30
+
uv run ruff check --fix .&& uv run ruff format .
31
+
```
32
+
33
+
26
34
## Project Overview
27
35
28
36
VGI (Vector Gateway Interface) provides an Apache Arrow-based protocol for connecting DuckDB to external programs. It enables user-defined functions to run in separate processes, communicating via stdin/stdout using Arrow IPC streaming.
0 commit comments