Skip to content

Commit 845a41c

Browse files
authored
Merge pull request #193 from tcharding/05-22-no-download
integration_test: Add download feature
2 parents 9aca575 + 98bc784 commit 845a41c

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

.github/workflows/rust.yaml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -210,23 +210,23 @@ jobs:
210210
matrix:
211211
feature:
212212
[
213-
"28_1",
214-
"28_0",
215-
"27_2",
216-
"27_1",
217-
"27_0",
218-
"26_2",
219-
"26_1",
220-
"26_0",
221-
"25_2",
222-
"24_2",
223-
"23_2",
224-
"22_1",
225-
"0_21_2",
226-
"0_20_2",
227-
"0_19_1",
228-
"0_18_1",
229-
"0_17_2",
213+
"28_1,download",
214+
"28_0,download",
215+
"27_2,download",
216+
"27_1,download",
217+
"27_0,download",
218+
"26_2,download",
219+
"26_1,download",
220+
"26_0,download",
221+
"25_2,download",
222+
"24_2,download",
223+
"23_2,download",
224+
"22_1,download",
225+
"0_21_2,download",
226+
"0_20_2,download",
227+
"0_19_1,download",
228+
"0_18_1,download",
229+
"0_17_2,download",
230230
]
231231
steps:
232232
- name: "Checkout repo"

integration_test/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ edition = "2021"
1111
# - `cargo test --all-features` does not work - select a single version.
1212
# - `cargo test --no-default-features` skips all tests.
1313
[features]
14+
download = ["node/download"]
15+
1416
# Enable the same feature in `node` and the version feature here.
1517
# All minor releases of the latest three versions.
1618
28_1 = ["v28", "node/28_1"]
@@ -51,7 +53,7 @@ TODO = [] # This is a dirty hack while writing the tests.
5153

5254
[dependencies]
5355
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
54-
node = { package = "corepc-node", version = "0.7.0", default-features = false, features = ["download"] }
56+
node = { package = "corepc-node", version = "0.7.0", default-features = false }
5557
rand = "0.8.5"
5658
env_logger = "0.9.0"
5759

0 commit comments

Comments
 (0)