Files
windmill/backend/windmill-test-utils/Cargo.toml
Ruben Fiszel 05a38d312d fix: advance postgres replication slot lsn via periodic standby status updates (#9227)
* fix: advance postgres replication slot lsn via periodic standby status updates

* test: add e2e regression test for postgres replication slot lsn advancement

Drives sustained change traffic so the slot freeze reproduces deterministically (fails pre-fix at the 20s deadline, passes post-fix within ~10s). Also wires the postgres_trigger feature through windmill-test-utils and the integration-tests crate so the postgres trigger e2e tests are actually runnable.
2026-05-19 05:44:13 +00:00

43 lines
1.2 KiB
TOML

[package]
name = "windmill-test-utils"
version.workspace = true
authors.workspace = true
edition.workspace = true
[lib]
name = "windmill_test_utils"
path = "src/lib.rs"
[features]
default = []
private = ["windmill-api/private"]
enterprise = ["windmill-api/enterprise"]
python = ["windmill-common/python"]
deno_core = ["dep:windmill-runtime-nativets"]
mcp = ["windmill-api/mcp"]
agent_worker_server = ["dep:windmill-api-agent-workers"]
run_inline = ["windmill-api/run_inline"]
duckdb = ["windmill-worker/duckdb"]
postgres_trigger = ["windmill-api/postgres_trigger"]
[dependencies]
windmill-api = { workspace = true, default-features = false }
windmill-worker.workspace = true
windmill-queue.workspace = true
windmill-common = { workspace = true, default-features = false }
windmill-api-client.workspace = true
windmill-runtime-nativets = { workspace = true, optional = true }
windmill-api-agent-workers = { workspace = true, optional = true }
sqlx.workspace = true
futures.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
uuid.workspace = true
chrono.workspace = true
axum.workspace = true
async-trait.workspace = true
anyhow.workspace = true
tracing.workspace = true