From 36bf817ec70ff9f5ea3ba0317555a97f206a038f Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Tue, 18 Apr 2023 16:27:02 +0200 Subject: [PATCH] Actually test `futures` builds Currently the BP `futures` tests rely on `std`. In order to actually have them run, we should enable `std`, i.e., remove `--no-default-features`. --- ci/ci-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index 7dad1436..37d8e06d 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -86,7 +86,7 @@ fi echo -e "\n\nTest futures builds" pushd lightning-background-processor -cargo test --verbose --color always --no-default-features --features futures +cargo test --verbose --color always --features futures popd if [ "$RUSTC_MINOR_VERSION" -gt 55 ]; then -- 2.30.2