From 95b955345da6774e976f0b00aac7f67bb9f873e4 Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Thu, 21 Apr 2022 14:46:20 -0400 Subject: [PATCH] chore: when building integration tests, activate `testing` features in `stacks`, `clarity`, and `stacks_common` --- testnet/stacks-node/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testnet/stacks-node/Cargo.toml b/testnet/stacks-node/Cargo.toml index 5785518b7..7a07015b0 100644 --- a/testnet/stacks-node/Cargo.toml +++ b/testnet/stacks-node/Cargo.toml @@ -30,6 +30,9 @@ ring = "0.16.19" warp = "0.3" tokio = "1.15" reqwest = { version = "0.11", features = ["blocking", "json", "rustls"] } +stacks = { package = "blockstack-core", path = "../../.", features = ["testing"] } +clarity = { package = "clarity", path = "../../clarity/.", features = ["testing"] } +stacks_common = { package = "stacks-common", path = "../../stacks-common/.", features = ["testing"] } [dev-dependencies.rusqlite] version = "=0.24.2"