From b29fa898c096ac78aed685dd34ba4f6ad9ac7e8f Mon Sep 17 00:00:00 2001 From: Swaraj Kumar Date: Mon, 24 Nov 2025 14:06:34 +0530 Subject: [PATCH] Workflow issue fix for smoke test Tox issue fixed in the workflow component tests run after unit tests Issue-Id: AIMLFW-316 Change-Id: I259f6dc7cde6ed6a67cbed8a6ae3b11376508d62 Signed-off-by: Swaraj Kumar --- .github/workflows/gerrit-verify.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gerrit-verify.yaml b/.github/workflows/gerrit-verify.yaml index bf7991b..9b301e2 100644 --- a/.github/workflows/gerrit-verify.yaml +++ b/.github/workflows/gerrit-verify.yaml @@ -82,9 +82,10 @@ jobs: GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }} TOX_ENVS: '["code"]' PYTHON_VERSION: '3.10' + PARALLEL: 1 component-test: - needs: prepare + needs: [prepare, call-gerrit-tox-verify] runs-on: ubuntu-latest timeout-minutes: 20 @@ -201,7 +202,7 @@ jobs: vote: if: ${{ always() }} # yamllint enable rule:line-length - needs: [prepare, call-gerrit-tox-verify] + needs: [prepare, call-gerrit-tox-verify,component-test] runs-on: ubuntu-latest steps: - uses: technote-space/workflow-conclusion-action@v3 -- 2.16.6