Actually test `futures` builds
authorElias Rohrer <ero@tnull.de>
Tue, 18 Apr 2023 14:27:02 +0000 (16:27 +0200)
committerElias Rohrer <ero@tnull.de>
Wed, 19 Apr 2023 08:25:04 +0000 (10:25 +0200)
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

index 7dad1436e989136ff55dcfd06408329b99059266..37d8e06de1ca408e4ce35e80abe45b96bbca482d 100755 (executable)
@@ -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