chore(deps): update dependency pytest-cov to v7 #82
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: test | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - README.md | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Install Poetry | |
| run: pipx install poetry | |
| - name: Setup Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| cache: poetry | |
| python-version: ${{ matrix.python-version }} | |
| - name: Build package | |
| run: poetry build | |
| install: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python-version: "3.8" | |
| openstack-version: zed | |
| - python-version: "3.8" | |
| openstack-version: "2023.1" | |
| - python-version: "3.8" | |
| openstack-version: "2023.2" | |
| - python-version: "3.10" | |
| openstack-version: "2024.1" | |
| - python-version: "3.10" | |
| openstack-version: "2024.2" | |
| - python-version: "3.12" | |
| openstack-version: "2025.1" | |
| - python-version: "3.12" | |
| openstack-version: "2025.2" | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Install Poetry | |
| run: pipx install poetry | |
| - name: Setup Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| cache: poetry | |
| python-version: ${{ matrix.python-version }} | |
| - name: Build package | |
| run: poetry build | |
| - name: Install package using constraints | |
| run: pip install --constraint https://releases.openstack.org/constraints/upper/${{ matrix.openstack-version }} ./dist/*.whl | |
| black: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Run "black" | |
| uses: psf/black@stable | |
| flake8: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: "3.11" | |
| - name: Install "flake8" | |
| run: pipx install flake8 | |
| - name: Run "flake8" | |
| uses: suo/flake8-github-action@releases/v1 | |
| with: | |
| checkName: flake8 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| isort: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: "3.11" | |
| - name: Run "isort" | |
| uses: isort/isort-action@master | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Install Poetry | |
| run: pipx install poetry | |
| - name: Setup Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| cache: poetry | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: poetry install --with dev | |
| - name: Run pytest | |
| run: poetry run pytest tests/ -v --cov=keystone_keycloak_backend --cov-report=term-missing |