From bc5cf5732832e6a64cfcb48040e526f90f9e592f Mon Sep 17 00:00:00 2001 From: Ondrej Prazak Date: Wed, 8 Nov 2023 15:47:46 +0100 Subject: [PATCH] fix(aries_vcx): make integration tests run --- .github/workflows/main.yml | 2 +- aries_vcx/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 01fdc251fc..61a2016ea4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -282,7 +282,7 @@ jobs: with: rust-toolchain-version: ${{ env.RUST_TOOLCHAIN_VERSON }} - name: "Run aries-vcx integration tests" - run: RUST_TEST_THREADS=1 cargo test --manifest-path="aries_vcx/Cargo.toml" -F vdrtools_wallet credx -- --ignored; + run: RUST_TEST_THREADS=1 cargo test --manifest-path="aries_vcx/Cargo.toml" -F vdrtools_wallet,credx -- --ignored; test-integration-aries-vcx-mysql: needs: workflow-setup diff --git a/aries_vcx/Cargo.toml b/aries_vcx/Cargo.toml index 4e1fc68e42..703a53d4c7 100644 --- a/aries_vcx/Cargo.toml +++ b/aries_vcx/Cargo.toml @@ -14,7 +14,8 @@ doctest = false # Feature flag to include the 'modular library' dependencies (vdrtools alternatives; indy-vdr, indy-credx) credx = [ "aries_vcx_core/credx", - "test_utils/vdrtools_wallet" + "test_utils/vdrtools_wallet", + "test_utils/credx" ] vdr_proxy_ledger = [ "aries_vcx_core/vdr_proxy_ledger",