diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 01fdc251fc..3d99338d0d 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 @@ -319,7 +319,7 @@ jobs: rust-toolchain-version: ${{ env.RUST_TOOLCHAIN_VERSON }} skip-vdrproxy-setup: false - name: "Run aries_vcx tests: vdrproxy_test" - run: RUST_TEST_THREADS=1 cargo test --manifest-path="aries_vcx/Cargo.toml" -F vdr_proxy_ledger credx -- --ignored + run: RUST_TEST_THREADS=1 cargo test --manifest-path="aries_vcx/Cargo.toml" -F vdr_proxy_ledger,credx -- --ignored - name: "Collect docker logs on failure" if: failure() uses: ./.github/actions/upload-docker-logs 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",