Skip to content

Commit

Permalink
[REGRESSION] debug churn (- WIP #46 & #49 -)
Browse files Browse the repository at this point in the history
Changes in file .github/workflows/Tests.yml:
 minor weird tweaks
  • Loading branch information
reactive-firewall committed Aug 27, 2024
1 parent 28ea471 commit 54492c4
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,11 +329,13 @@ jobs:
shell: bash
run: |
if [ $OS == ubuntu-latest ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
if: ${{ !cancelled() }}
- name: deepsource for ${{ matrix.python-version }}
if: ${{ runner.os }} == "Linux"
shell: bash
run: |
if [ $OS == ubuntu-latest ] ; then ./bin/deepsource report --analyzer test-coverage --key python --value-file ./coverage.xml 2>/dev/null || true ; else echo "SKIP deepsource" ; fi ;
if: ${{ !cancelled() }}
- name: Post-Clean
id: post
run: make -j1 -f Makefile clean || true ;
Expand All @@ -358,7 +360,7 @@ jobs:
python-version: "3.10"
- name: Install dependencies for python Linters
run: |
pip install --upgrade pip setuptools wheel
pip install --upgrade pip setuptools build wheel
pip install -r ./requirements.txt ;
pip install flake8 ;
pip install pyflakes ;
Expand Down Expand Up @@ -396,7 +398,7 @@ jobs:
COV_CORE_DATAFILE: ./coverage.xml
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
- name: Setup Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -406,20 +408,20 @@ jobs:
pip install --upgrade --upgrade-strategy eager -r ./requirements.txt ;
pip install --upgrade --upgrade-strategy eager coverage pytest pytest-cov ;
pip freeze --all ;
if: ${{ !cancelled() }}
- name: Pre-Clean
id: clean-prep
run: make -j1 -f Makefile clean ;
if: ${{ !cancelled() }}
- name: Pre-build for Python ${{ matrix.python-version }} on ${{ matrix.os }}
run: make -j1 -f Makefile build ;
if: ${{ success() }}
- name: Pre-install for Python ${{ matrix.python-version }} on ${{ matrix.os }}
run: make -j1 -f Makefile user-install || true ;
if: ${{ success() }}
- name: Regression check of Coverage for py${{ matrix.python-version }} on ${{ matrix.os }}
run: |
./tests/check_codecov_regression ;
cp -vf ./coverage.xml ./test-reports/coverage.xml || true ;
shell: bash
run: ./tests/check_codecov_regression ;
if: ${{ success() }}
- name: Summerize Regressions for python ${{ matrix.python-version }}
id: sumerize-r-check-s
run: |
Expand All @@ -429,7 +431,7 @@ jobs:
- name: Summerize Regressions for python ${{ matrix.python-version }}
id: sumerize-r-check-f
run: |
echo "- Test Reports did NOT regress for python version ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY
echo ":x: Test Reports REGRESS for python version ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY
if: ${{ failure() }}
shell: bash
- name: Post-z-purge
Expand Down

0 comments on commit 54492c4

Please sign in to comment.