Skip to content

Bump pytest from 7.4.4 to 8.0.0 #428

Bump pytest from 7.4.4 to 8.0.0

Bump pytest from 7.4.4 to 8.0.0 #428

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pytest-celery
on:
push:
branches: ["main"]
paths:
- "**.py"
- "**.txt"
- ".github/workflows/python-package.yml"
- "**.toml"
- "tox.ini"
pull_request:
paths:
- "**.py"
- "**.txt"
- "**.toml"
- ".github/workflows/python-package.yml"
- "tox.ini"
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
Unit:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest"]
steps:
- name: Fetch Docker Images
run: |
docker pull redis:latest
docker pull rabbitmq:latest
docker pull memcached:latest
- name: Install apt packages
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/setup.py'
- name: Install Poetry
if: startsWith(matrix.os, 'ubuntu-')
uses: snok/install-poetry@v1.3.4
- name: Install tox
run: |
poetry config virtualenvs.create false
poetry install --only ci
- name: Run tox for "${{ matrix.python-version }}-unit"
timeout-minutes: 5
run: |
tox --verbose --verbose -e "${{ matrix.python-version }}-unit"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true # optional (default = false)
Integration:
needs:
- Unit
if: needs.Unit.result == 'success'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest"]
steps:
- name: Fetch Docker Images
run: |
docker pull redis:latest
docker pull rabbitmq:latest
docker pull memcached:latest
- name: Install apt packages
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/setup.py'
- name: Install Poetry
if: startsWith(matrix.os, 'ubuntu-')
uses: snok/install-poetry@v1.3.4
- name: Install tox
run: |
poetry config virtualenvs.create false
poetry install --only ci
- name: Run tox for "${{ matrix.python-version }}-integration"
timeout-minutes: 15
run: |
tox --verbose --verbose -e "${{ matrix.python-version }}-integration" -- -n auto --reruns 2 --rerun-except AssertionError
Smoke:
needs:
- Integration
if: needs.Integration.result == 'success'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest"]
steps:
- name: Fetch Docker Images
run: |
docker pull redis:latest
docker pull rabbitmq:latest
docker pull memcached:latest
- name: Install apt packages
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/setup.py'
- name: Install Poetry
if: startsWith(matrix.os, 'ubuntu-')
uses: snok/install-poetry@v1.3.4
- name: Install tox
run: |
poetry config virtualenvs.create false
poetry install --only ci
- name: Run tox for "${{ matrix.python-version }}-smoke"
timeout-minutes: 15
run: |
tox --verbose --verbose -e "${{ matrix.python-version }}-smoke" -- -n auto --reruns 2 --rerun-except AssertionError