Skip to content

Commit

Permalink
ref: remove default testing from weighted splitter
Browse files Browse the repository at this point in the history
  • Loading branch information
joemonem committed Jan 3, 2025
1 parent f633c7a commit bd6357a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
testing = ["cw-multi-test", "andromeda-testing"]
default = ["testing"]


[dependencies]
Expand All @@ -26,9 +25,10 @@ andromeda-std = { workspace = true }
andromeda-finance = { workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
andromeda-testing = { workspace = true, optional = true }
cw-multi-test = { workspace = true, optional = true }
cw-orch = { workspace = true }
andromeda-testing = { workspace = true, optional = true }


[dev-dependencies]
andromeda-app = { workspace = true }
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![cfg(all(not(target_arch = "wasm32"), feature = "testing"))]

use crate::contract::{execute, instantiate, query, reply};
use andromeda_finance::weighted_splitter::{AddressWeight, ExecuteMsg, InstantiateMsg, QueryMsg};
use andromeda_std::{amp::Recipient, common::expiration::Expiry};
Expand Down

0 comments on commit bd6357a

Please sign in to comment.