mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-03 18:32:55 +00:00
Add a new test feature which allows for running the lancedb tests against a remote server. Convert over a few tests in src/connection.rs as a proof of concept. To make local development easier, the remote tests can be run locally from a Makefile. This file can also be used to run the feature tests, with a single invocation of 'make'. (The feature tests require bringing up a docker compose environment.)
5 lines
105 B
Bash
Executable File
5 lines
105 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export RUST_LOG=info
|
|
exec ./lancedb server --port 0 --sql-port 0 --data-dir "${1}"
|