From 715d52f605e25e4dc1ed774b70ef272c8800837a Mon Sep 17 00:00:00 2001 From: Moudy Date: Wed, 20 May 2026 16:04:53 +0200 Subject: [PATCH] chore(workspace): drop integration_tests workspace dep and clean test_fixtures docstring --- Cargo.toml | 1 - test_fixtures/src/lib.rs | 4 ---- 2 files changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ce67c92a..b3dd2f2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,6 @@ faucet_core = { path = "programs/faucet/core" } vault_core = { path = "programs/vault/core" } test_program_methods = { path = "test_program_methods" } testnet_initial_state = { path = "testnet_initial_state" } -integration_tests = { path = "integration_tests" } test_fixtures = { path = "test_fixtures" } tokio = { version = "1.50", features = [ diff --git a/test_fixtures/src/lib.rs b/test_fixtures/src/lib.rs index da2b7be2..2c9dfb3a 100644 --- a/test_fixtures/src/lib.rs +++ b/test_fixtures/src/lib.rs @@ -1,9 +1,5 @@ //! Shared test/bench fixtures: spins up bedrock + sequencer + indexer + wallet //! end-to-end against docker-compose, exposes a `TestContext` callers can drive. -//! -//! Originally lived under `integration_tests`; split out so non-test consumers -//! (e.g. `integration_bench`) can depend on the fixtures without pulling in the -//! `integration_tests` test files. use std::{net::SocketAddr, path::Path, sync::LazyLock};