From 253f8ecb74c51f04968da39ae99e02ca39a56a8a Mon Sep 17 00:00:00 2001 From: Krzysztof Kalinowski Date: Tue, 19 Dec 2023 10:30:41 +0400 Subject: [PATCH] Back to original calling from sut_path --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07b1982a9..3a9d2f9e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -166,13 +166,11 @@ jobs: - name: Generate hashes id: hashes run: nox -vs make_dist_digest - - name: Copy binary from dist for testing - run: cp ${{ steps.bundle.outputs.sut_path }} ./b2 - name: Run integration tests (without secrets) - run: nox -vs integration -- --sut=./b2 -m "not require_secrets" + run: nox -vs integration -- --sut=${{ steps.bundle.outputs.sut_path }} -m "not require_secrets" - name: Run integration tests (with secrets) if: ${{ env.B2_TEST_APPLICATION_KEY != '' && env.B2_TEST_APPLICATION_KEY_ID != '' }} - run: nox -vs integration -- --sut=./b2 -m "require_secrets" --cleanup + run: nox -vs integration -- --sut=${{ steps.bundle.outputs.sut_path }} -m "require_secrets" --cleanup - name: Upload assets if: failure() uses: actions/upload-artifact@v2