mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +00:00
* refactor: add integration-tests module * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * test: move grpc module to tests-integration * test: adapt new standalone mode * test: improve http assertion Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
28 lines
925 B
TOML
28 lines
925 B
TOML
[package]
|
|
name = "tests-integration"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
api = { path = "../src/api" }
|
|
axum = "0.6.0-rc.2"
|
|
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
|
|
catalog = { path = "../src/catalog" }
|
|
client = { path = "../src/client" }
|
|
common-catalog = { path = "../src/common/catalog" }
|
|
common-runtime = { path = "../src/common/runtime" }
|
|
common-telemetry = { path = "../src/common/telemetry" }
|
|
datanode = { path = "../src/datanode" }
|
|
datatypes = { path = "../src/datatypes" }
|
|
frontend = { path = "../src/frontend" }
|
|
mito = { path = "../src/mito", features = ["test"] }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
servers = { path = "../src/servers" }
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sql = { path = "../src/sql" }
|
|
table = { path = "../src/table" }
|
|
tempdir = "0.3"
|
|
tokio = { version = "1.20", features = ["full"] }
|