Bump hypothesis from 6.147.0 to 6.151.2 in /.github/deps/latest #706
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: Run unit tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: unit-test-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| PYTHONUNBUFFERED: "1" | |
| FORCE_COLOR: "1" | |
| PIP_PROGRESS_BAR: "off" | |
| jobs: | |
| run: | |
| name: Py${{ matrix.python-version }} (${{ matrix.deps }} deps) on Linux | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| deps: [default, latest, min] | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install packages | |
| if: matrix.deps == 'default' | |
| run: | | |
| pip install --upgrade pip | |
| pip install -e . --group tests | |
| - name: Install packages (latest) | |
| # Latest versions of dependencies monitored by Dependabot | |
| if: matrix.deps == 'latest' | |
| run: | | |
| pip install --upgrade pip | |
| pip install -e . | |
| pip install -r .github/deps/latest/requirements.txt | |
| - name: Install packages (minimum) | |
| # Oldest supported versions of dependencies in `pyproject.toml` | |
| if: matrix.deps == 'min' | |
| run: | | |
| pip install -e . | |
| pip install -r .github/deps/minimum/requirements.txt | |
| - name: List installed packages | |
| run: pip list | |
| - name: Run tests | |
| run: pytest -vv --cov --cov-report=xml | |
| - name: Check Codecov token # e.g., Dependabot doesn't have the CODECOV_TOKEN | |
| id: check_codecov_token | |
| run: | | |
| if [ -n "${{ secrets.CODECOV_TOKEN }}" ]; then | |
| echo "exists=true" >> $GITHUB_OUTPUT | |
| else | |
| echo "exists=false" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Upload coverage to Codecov | |
| if: steps.check_codecov_token.outputs.exists == 'true' | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| verbose: true |