Skip to content

Commit

Permalink
[REGRESSION] adding more diognostic output for regressions in CI (- WIP
Browse files Browse the repository at this point in the history
#46 & #49 -)

Changes in file .github/workflows/Tests.yml:
 - output more on regression testing
  • Loading branch information
reactive-firewall committed Aug 27, 2024
1 parent e2a21a2 commit ffb46e9
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ jobs:
run: make -j1 -f Makefile clean || true ;
if: ${{ always() }}


REGRESSION:
if: ${{ !cancelled() }}
needs: [MATS, COVERAGE]
Expand Down Expand Up @@ -403,10 +404,8 @@ jobs:
run: |
pip install --upgrade --upgrade-strategy eager pip setuptools build wheel ;
pip install --upgrade --upgrade-strategy eager -r ./requirements.txt ;
pip install --upgrade --upgrade-strategy eager pytest ;
pip install --upgrade --upgrade-strategy eager pytest-cov ;
pip install --upgrade --upgrade-strategy eager coverage ;
if: ${{ !cancelled() }}
pip install --upgrade --upgrade-strategy eager coverage pytest pytest-cov ;
pip freeze --all ;
- name: Pre-Clean
id: clean-prep
run: make -j1 -f Makefile clean ;
Expand All @@ -427,6 +426,12 @@ jobs:
echo "- Test Reports did NOT regress for python version ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY
if: ${{ success() }}
shell: bash
- name: Summerize Regressions for python ${{ matrix.python-version }}
id: sumerize-r-check
run: |
echo "- Test Reports did NOT regress for python version ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY
if: ${{ failed() }}
shell: bash
- name: Post-z-purge
id: post-uninstall
run: make -j1 -f Makefile purge || true ;
Expand Down

0 comments on commit ffb46e9

Please sign in to comment.