Skip to content

Add packaging, used in sentry integration #260

Add packaging, used in sentry integration

Add packaging, used in sentry integration #260

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- run: pip install pre-commit
- uses: actions/cache@v3
id: pre-commit-cache
with:
path: ~/.cache/pre-commit
key: key-0
- run: pre-commit run --all-files
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8.18", "3.9.19", "3.10.14", "3.11.9", "3.12.4" ]
# Ideally we would test starlette versions, not FastAPI,
# but our test suite currently uses FastAPI comprehensively,
# so we would need to redo that first.
fastapi-version: [ "0.109", "0.110", "0.111"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- uses: actions/cache@v3
id: poetry-cache
with:
path: ~/.local
key: ${{ matrix.python-version }}-1
- uses: snok/install-poetry@v1
with:
virtualenvs-create: false
version: latest
- uses: actions/cache@v3
id: cache-venv
with:
path: .venv
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}-1
- run: |
python -m venv .venv
source .venv/bin/activate
pip install -U pip
poetry add fastapi==${{ matrix.fastapi-version }}
poetry install --no-interaction --no-root
if: steps.cache-venv.outputs.cache-hit != 'true'
- run: |
python -m venv .venv
source .venv/bin/activate
pip install importlib-metadata==4.13.0
if: matrix.python-version == '3.7.14'
- name: Run tests
run: |
source .venv/bin/activate
coverage run -m pytest tests
coverage xml
coverage report
- uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
fail_ci_if_error: true
if: matrix.python-version == '3.10.6'