Skip to content

pinning asyncpg to 0.29.0 in the requirements #1118

pinning asyncpg to 0.29.0 in the requirements

pinning asyncpg to 0.29.0 in the requirements #1118

name: guillotina
on: [push]
jobs:
# Job to run pre-checks
pre-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install $(grep -P 'flake8|black|isort' contrib-requirements.txt)
- name: Run pre-checks
run: |
flake8 guillotina --config=setup.cfg
isort -c -rc guillotina/
black --check --verbose guillotina
# Job to run tests
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
database: ["DUMMY", "postgres", "cockroachdb"]
db_schema: ["custom", "public"]
exclude:
- database: "DUMMY"
db_schema: "custom"
- database: "cockroachdb"
db_schema: "custom"
# Set environment variables
env:
DATABASE: ${{ matrix.database }}
DB_SCHEMA: ${{ matrix.db_schema }}
MEMCACHED: "localhost:11211"
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install the package
run: |
pip install $(grep "Cython" requirements.txt)
pip install -r requirements.txt
pip install -r contrib-requirements.txt
pip install -e .[test]
pip install -e .[testdata]
- name: Start memcached image
uses: niden/actions-memcached@v7
- name: Check mypy
run: |
mypy guillotina/
- name: Run tests
run: |
pytest -rfE --reruns 2 --cov=guillotina -s --tb=native -v --cov-report xml --cov-append guillotina
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml