Merge pull request #397 from bugsnag/templates-update-20250124-172756 #970
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 bugsnag-python against Python versions | |
| on: [ push, pull_request ] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
| os: ['ubuntu-latest'] | |
| include: | |
| # Python 3.5 and 3.6 tests skipped pending PLAT-14414 | |
| # - python-version: '3.5' | |
| # os: 'ubuntu-22.04' | |
| # pip-trusted-host: 'pypi.python.org pypi.org files.pythonhosted.org' | |
| # - python-version: '3.6' | |
| # os: 'ubuntu-22.04' | |
| - python-version: '3.7' | |
| os: 'ubuntu-22.04' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| env: | |
| PIP_TRUSTED_HOST: ${{ matrix.pip-trusted-host }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install coveralls 'tox<4.0.0' tox-factor setuptools | |
| - name: Run tests | |
| run: | | |
| pyversion=${{ matrix.python-version }} | |
| TOXFACTOR=${pyversion//.0-*/} | |
| tox -f py${TOXFACTOR//./} | |
| - name: Upload code coverage data | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| COVERALLS_FLAG_NAME: ${{ matrix.test-name }} | |
| COVERALLS_PARALLEL: true | |
| run: | | |
| coverage combine | |
| coveralls --service github | |
| coveralls: | |
| name: Finish Coveralls processing | |
| needs: test | |
| runs-on: ubuntu-latest | |
| container: python:3-slim | |
| steps: | |
| - name: Send request | |
| run: | | |
| pip3 install --upgrade coveralls | |
| coveralls --service github --finish | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |