This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Add emojis directly and refactor email and Slack messages #10832
Workflow file for this run
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: Python Lint and Test | |
| on: pull_request | |
| jobs: | |
| test: | |
| env: | |
| # Minimum code coverage per file | |
| COVERAGE_SINGLE: 50 | |
| # Minimum total code coverage | |
| COVERAGE_TOTAL: 50 | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: dispatch | |
| POSTGRES_DB: dispatch | |
| ports: | |
| - 5432:5432 | |
| # needed because the postgres container does not provide a healthcheck | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11.11 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip- | |
| - name: Install uv | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
| - name: Install python dependencies | |
| run: | | |
| export DISPATCH_LIGHT_BUILD=1 | |
| uv venv | |
| source .venv/bin/activate | |
| uv pip install -e ".[dev]" | |
| - name: "Lint with ruff" | |
| run: | | |
| source .venv/bin/activate | |
| ruff check src tests | |
| ruff format src tests | |
| - name: Test with pytest | |
| run: | | |
| source .venv/bin/activate | |
| uv pip install pytest-cov | |
| pytest --junitxml=junit/test-results.xml --cov=dispatch --cov-report=json:coverage.json --cov-report=xml --cov-report=html | |
| - name: Coverage per file | |
| # All modified files should meet the minimum code coverage requirement. | |
| run: | | |
| export MODIFIED_FILES=$(git diff main...HEAD --name-only | grep -E '\.py$') | |
| export FAILED_COVERAGE_PER_FILE=$(python -c "import json;files=json.load(open('coverage.json'))['files'];covs=map(lambda k, v: (k, v['summary']['percent_covered_display']),files.keys(),files.values()); f=filter(lambda cov:int(cov[1])<50,covs); print('\n'.join('{:<68}{:>3}%'.format(k,v) for k,v in f))") | |
| export FAILED_COVERAGE_FILES=(); echo "$FAILED_COVERAGE_PER_FILE" | while read -r line; do FAILED_COVERAGE_FILES+=${line%%[[:space:]]*};done | |
| files=($(comm -12 <(for X in "${MODIFIED_FILES}"; do echo "${X}"; done|sort) <(for X in "${FAILED_COVERAGE_FILENAMES}"; do echo "${X}"; done|sort))) | |
| if [[ ${#files[@]} > 0 ]]; then | |
| echo "FAIL Recommended file test coverage of ${{ env.COVERAGE_SINGLE }}% not reached. All modified files must meet the minimum code coverage requirement." | |
| for f in "${files[@]}"; do | |
| echo $FAILED_COVERAGE_PER_FILE | grep $f | |
| done | |
| exit 1 | |
| fi | |
| - name: Coverage total | |
| run: | | |
| export COVERAGE_TOTAL=$(python -c "import json;print(json.load(open('coverage.json'))['totals']['percent_covered_display'])") | |
| echo "Total coverage: $COVERAGE_TOTAL%" | |
| if [[ $COVERAGE_TOTAL < ${{ env.COVERAGE_TOTAL }} ]]; then | |
| echo "FAIL Recommended total test coverage of ${{ env.COVERAGE_TOTAL }}% not reached. Total coverage: $COVERAGE_TOTAL%" | |
| exit 1 | |
| fi |