Skip to content

Bump cryptography from 42.0.7 to 43.0.1 #1426

Bump cryptography from 42.0.7 to 43.0.1

Bump cryptography from 42.0.7 to 43.0.1 #1426

Workflow file for this run

name: Unit tests
on: [push]
env:
APP_STATE: "testing"
TEST_DB_STRING: "sqlite://"
SECRET_KEY: "randomsecretkey"
FLASK_APP: "kucharka"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test with pytest
run: |
poetry run pytest -c pyproject.toml -m "not integration"