From b61adcfd303d65045b41fdea4939f2ad77d04a99 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Fri, 5 Nov 2021 18:23:24 +0000 Subject: [PATCH] chore(solc): fix flaky integration test When running integration tests, the `cfg(test)` is not triggered, so we added a `tests` feature in the code. However, we did not include it in the actual features of the crate, so it was not getting triggered when the `--all-features` tests were running. --- ethers-solc/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ethers-solc/Cargo.toml b/ethers-solc/Cargo.toml index f9ade2b2..369b7ee3 100644 --- a/ethers-solc/Cargo.toml +++ b/ethers-solc/Cargo.toml @@ -39,3 +39,4 @@ tempdir = "0.3.7" [features] async = ["tokio", "futures-util"] full = ["async", "svm"] +tests = []