Skip to content

Develop > Master / 1.6.9 #126

Develop > Master / 1.6.9

Develop > Master / 1.6.9 #126

Workflow file for this run

name: pytest
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
debian-version: [ '10', '11' ]
sqlalchemy-version: [ '1.3', '1.4' ]
include:
- debian-version: '10'
python-version: '3.7'
postgres-version: '11-stretch'
- debian-version: '11'
python-version: '3.9'
postgres-version: '13-bullseye'
exclude:
- debian-version: '10'
sqlalchemy-version: '1.3'
name: Debian ${{ matrix.debian-version }} - SQLAlchemy ${{ matrix.sqlalchemy-version }}
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Add database extensions
run: |
psql -h localhost -U postgres -d postgres -tc 'CREATE EXTENSION "uuid-ossp";'
env:
PGPASSWORD: postgres
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
if: ${{ matrix.sqlalchemy-version == '1.3' }}
run: |
python -m pip install --upgrade pip
python -m pip install \
pytest-cov \
-e .[tests] \
-e file:dependencies/Utils-Flask-SQLAlchemy#egg=utils-flask-sqlalchemy \
"sqlalchemy<1.4" \
"flask-sqlalchemy<3"\
"flask-marshmallow<0.15"
- name: Install dependencies
if: ${{ matrix.sqlalchemy-version == '1.4' }}
run: |
python -m pip install --upgrade pip
python -m pip install \
pytest-cov \
-e .[tests] \
-e file:dependencies/Utils-Flask-SQLAlchemy#egg=utils-flask-sqlalchemy \
"sqlalchemy<2,>=1.4" \
"flask-sqlalchemy>=3"
- name: Install database
run: |
alembic upgrade utilisateurs@head
env:
SQLALCHEMY_URI: 'postgresql://postgres:postgres@localhost/postgres'
- name: Test with pytest
run: |
pytest -v --cov --cov-report xml
env:
USERSHUB_AUTH_MODULE_SETTINGS: test_settings.py
- name: Upload coverage to Codecov
if: ${{ matrix.debian-version == '11' }}
uses: codecov/codecov-action@v3
with:
flags: pytest