Skip to content

store certificate revocation lists in database #1468

store certificate revocation lists in database

store certificate revocation lists in database #1468

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
django-version: [ "4.2.0", "5.0.0", "5.1.0" ]
cryptography-version: [ "43.0" ]
pydantic-version: [ "2.9.0" ]
exclude:
- python-version: 3.9
django-version: 5.0.0
- python-version: 3.9
django-version: 5.1.0
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}, cryptography ${{ matrix.cryptography-version }}, pydantic ${{ matrix.pydantic-version }}
steps:
- name: Install APT dependencies
run: sudo apt-get install -y firefox softhsm2
- name: Acquire sources
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Apply caching of dependencies
uses: actions/[email protected]
with:
path: ~/.cache/pip
key: os=${{ matrix.os }}-python=${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements-*.txt') }}
- name: Install dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements.txt -r requirements/requirements-test.txt django~=${{ matrix.django-version }} cryptography~=${{ matrix.cryptography-version }} pydantic~=${{ matrix.pydantic-version }}
- name: Initialize demo
run: python dev.py init-demo
- name: Run tests
run: pytest -v --cov-report term-missing --durations=20