Skip to content

Port Celery tests to Maze Runner #842

Port Celery tests to Maze Runner

Port Celery tests to Maze Runner #842

Workflow file for this run

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.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-latest']
include:
- python-version: '3.5'
os: 'ubuntu-20.04'
- python-version: '3.6'
os: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- 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 }}