Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(BSR)[PRO] desactive allure result #15999

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/dev_on_pull_request_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,11 @@ jobs:

merge-allure-reports:
name: "Merge Allure Reports and Push to Allure Repository"
needs: [pcapi-init-job, test-pro, test-pro-e2e]
needs: [pcapi-init-job, test-pro]
runs-on: ubuntu-22.04
if: |
always() &&
!cancelled() &&
needs.pcapi-init-job.outputs.pro-changed == 'true' &&
(needs.test-pro.result == 'success' || needs.test-pro-e2e.result == 'success')
!cancelled() && needs.test-pro.result != 'skipped'
steps:
- name: "Install Allure CLI via Yarn"
run: yarn global add allure-commandline
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/dev_on_push_workflow_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,11 @@ jobs:

merge-allure-reports:
name: "Merge Allure Reports and Push to Allure Repository"
needs: [test-pro, test-pro-e2e]
needs: [test-pro]
runs-on: ubuntu-22.04
if: |
always() &&
!cancelled() &&
(needs.test-pro.result == 'success' || needs.test-pro-e2e.result == 'success')
!cancelled() && needs.test-pro.result != 'skipped'
steps:
- name: "Install Allure CLI via Yarn"
run: yarn global add allure-commandline
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev_on_workflow_tests_pro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ jobs:

- name: "Upload Allure results for pro tests"
uses: actions/upload-artifact@v4
if: always()
with:
name: allure-results-pro-unit
path: allure-results
Expand Down