Skip to content

Commit 96ad240

Browse files
committed
Add tests for lightning-persister with tokio feature to CI
We recently introduced a new `tokio` feature to `lightning-persister`, but never added it to CI which has us never run the tests that depend on it. Here we fix this omission.
1 parent 67fd854 commit 96ad240

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/ci-tests.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ cargo check -p lightning-block-sync --verbose --color always --features rpc-clie
9090
cargo test -p lightning-block-sync --verbose --color always --features rpc-client,rest-client,tokio
9191
cargo check -p lightning-block-sync --verbose --color always --features rpc-client,rest-client,tokio
9292

93+
echo -e "\n\nChecking and testing lightning-persister with features"
94+
cargo test -p lightning-persister --verbose --color always --features tokio
95+
cargo check -p lightning-persister --verbose --color always --features tokio
96+
cargo doc -p lightning-persister --document-private-items --features tokio
97+
9398
echo -e "\n\nTest Custom Message Macros"
9499
cargo test -p lightning-custom-message --verbose --color always
95100
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean

0 commit comments

Comments
 (0)