From b0f7cc3ca232a2314292889f389fb9f030528229 Mon Sep 17 00:00:00 2001 From: Nahuel Date: Wed, 25 Jan 2023 11:56:54 +0100 Subject: [PATCH] Fix GH acton for E2E CLI tests coverage to Sonar (#9910) --- .github/workflows/py-cli-e2e-tests.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/py-cli-e2e-tests.yml b/.github/workflows/py-cli-e2e-tests.yml index d026a19cdee..a812d22b7a3 100644 --- a/.github/workflows/py-cli-e2e-tests.yml +++ b/.github/workflows/py-cli-e2e-tests.yml @@ -103,23 +103,23 @@ jobs: - name: Upload coverage artifact if: matrix.e2e-test == 'python' && steps.e2e-test.outcome == 'success' uses: actions/upload-artifact@v3 - with: - name: coverage-${{ matrix.e2e-test }} - path: .coverage + with: + name: coverage-${{ matrix.e2e-test }} + path: .coverage - name: Upload coverage artifact for Python tests if: matrix.e2e-test != 'python' && steps.e2e-test.outcome == 'success' uses: actions/upload-artifact@v3 - with: - name: coverage-${{ matrix.e2e-test }} - path: .coverage.${{ matrix.e2e-test }} + with: + name: coverage-${{ matrix.e2e-test }} + path: .coverage.${{ matrix.e2e-test }} - name: Upload tests artifact if: steps.e2e-test.outcome == 'success' uses: actions/upload-artifact@v3 - with: - name: tests-${{ matrix.e2e-test }} - path: ingestion/junit/test-results-*.xml + with: + name: tests-${{ matrix.e2e-test }} + path: ingestion/junit/test-results-*.xml - name: Clean Up run: |