Skip to content

Commit 9ee4a5b

Browse files
committed
CI changes for errors
1 parent 89f8b5f commit 9ee4a5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/unit-testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,25 @@ jobs:
4343
git switch new_branch_for_testing
4444
contentctl test --verbose --disable-tqdm --no-enable-integration-testing --container-settings.num-containers 2 --post-test-behavior never_pause mode:changes --mode.target-branch ${{ github.base_ref }}
4545
echo "contentctl test - COMPLETED"
46-
continue-on-error: true
4746
4847
# Store test_results/summary.yml and dist/DA-ESS-ContentUpdate-latest.tar.gz to job artifact-test_summary_results.zip
4948
- name: store_artifacts
49+
if: always()
5050
uses: actions/upload-artifact@v4
5151
with:
5252
name: test_summary_results
5353
path: |
5454
test_results/summary.yml
5555
dist/DA-ESS-ContentUpdate-latest.tar.gz
56-
continue-on-error: true
5756
5857
# Print entire result summary so that the users can view it in the Github Actions logs
5958
- name: Print entire test_results/summary.yml
59+
if: always()
6060
run: cat test_results/summary.yml
61-
continue-on-error: true
6261

6362
# Run a simple custom script created to pretty print results in a markdown friendly format in Github Actions Summary
6463
- name: Check the test_results/summary.yml for pass/fail.
64+
if: always()
6565
run: |
6666
echo "This job will fail if there are failures in unit-testing"
6767
python .github/workflows/format_test_results.py >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)