samansmink / extension-template-rs

PoC for a Rust-based extension template for DuckDB based on the Extension C API
4 stars 1 forks source link

make install_test_dependencies fails #2

Open archiewood opened 1 month ago

archiewood commented 1 month ago
(venv) ~/Projects/extension-template-rs$ make install_test_dependencies
make: *** No rule to make target `install_test_dependencies'.  Stop.

I worked around this by manually installing

uv pip install duckdb
uv pip install git+https://github.com/duckdb/duckdb-sqllogictest-python

Then it worked

(venv) ~/Projects/extension-template-rs$ make test_debug
Running DEBUG tests..
[0/1] test/sql/rusty_quack.test
SUCCESS
samansmink commented 1 month ago

thanks for reporting, but please note that this repo is not yet in a state where i'd consider it ready for use. I will move it to the duckdb organisation once it is!

archiewood commented 1 month ago

All good, just adding info if other people wanted to try it out