Skip to content

Commit

Permalink
fix: Update behave_schedule.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
robbrad authored Jan 4, 2025
1 parent cf8cb85 commit 482beff
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/behave_schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ jobs:
run: make matrix=${{ matrix.python-version }} councils="${{ env.COUNCIL_TESTS }}" integration-tests
continue-on-error: true

- name: Archive Integration Tests Results
uses: actions/upload-artifact@v4
with:
name: integration-tests-results-${{ matrix.python-version }}
path: build/${{ matrix.python-version }}/allure-results

# Only generate and upload Allure reports on schedule
report:
name: Generate and Upload Reports
Expand All @@ -152,7 +158,12 @@ jobs:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v4

- name: Download Allure Results
uses: actions/download-artifact@v4
with:
name: integration-tests-results-${{ matrix.python-version }}
path: build/${{ matrix.python-version }}/allure-results

# Fetch Allure history for the full report (optional)
- name: Get Allure history - Full Report
Expand Down

0 comments on commit 482beff

Please sign in to comment.