From 35feb107ed5969720ce54a6aa76b7b2176f6c7c1 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Thu, 19 May 2022 14:00:40 -0700 Subject: [PATCH] [CI] Fix cont_integration test-blockchains to run all tests --- .github/workflows/cont_integration.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 091ba157..4a7c2ea9 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -90,12 +90,16 @@ jobs: matrix: blockchain: - name: electrum + testprefix: blockchain::electrum::test features: test-electrum,verify - name: rpc + testprefix: blockchain::rpc::test features: test-rpc - name: esplora + testprefix: esplora features: test-esplora,use-esplora-reqwest,verify - name: esplora + testprefix: esplora features: test-esplora,use-esplora-ureq,verify steps: - name: Checkout @@ -114,7 +118,7 @@ jobs: toolchain: stable override: true - name: Test - run: cargo test --no-default-features --features ${{ matrix.blockchain.features }} ${{ matrix.blockchain.name }}::bdk_blockchain_tests + run: cargo test --no-default-features --features ${{ matrix.blockchain.features }} ${{ matrix.blockchain.testprefix }}::bdk_blockchain_tests check-wasm: name: Check WASM -- 2.49.0