rpcme invoking coverage #209
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Thingpress Unit Test Code Coverage | |
| run-name: ${{ github.actor }} invoking coverage | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| CoverageAndLinting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - name: 'Install dependencies' | |
| run: | | |
| pip install -r ./requirements.txt | |
| pip install fastjsonschema | |
| pip install anybadge | |
| pip install jmespath | |
| - name: 'Run coverage' | |
| run: | | |
| export AWS_DEFAULT_REGION=us-east-1 | |
| # Fix PYTHONPATH to include both src and src/layer_utils | |
| export PYTHONPATH=$(pwd)/src:$(pwd)/src/layer_utils | |
| # Set required environment variables for tests | |
| export POWERTOOLS_IDEMPOTENCY_TABLE=test-idempotency-table | |
| export POWERTOOLS_IDEMPOTENCY_EXPIRY_SECONDS=3600 | |
| # Run coverage only on test/unit/src directory to avoid script imports | |
| bash $(pwd)/scripts/dev_coverage.sh | |
| lintscore=$(pylint -f json2 --recursive true --enable-all-extensions src/ | jq -r .statistics.score) | |
| anybadge -l pylint -v ${lintscore} -o -f .github/linting.svg 2=red 4=orange 8=yellow 10=green | |
| - name: Coverage Badge | |
| uses: tj-actions/coverage-badge-py@v2 | |
| with: | |
| output: ".github/coverage.svg" | |
| - name: Verify Changed files | |
| uses: tj-actions/verify-changed-files@v20 | |
| id: verify-changed-files | |
| with: | |
| files: | | |
| .github/coverage.svg | |
| .github/linting.svg | |
| - name: 'Commit files' | |
| if: steps.verify-changed-files.outputs.files_changed == 'true' | |
| run: | | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git add .github/coverage.svg | |
| git add .github/linting.svg | |
| git commit -m "Updated coverage.svg" .github/coverage.svg .github/linting.svg | |
| - name: 'Push changes' | |
| if: steps.verify-changed-files.outputs.files_changed == 'true' | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| branch: ${{ github.ref }} |