Skip to content

Bump urllib3 from 2.0.6 to 2.0.7 (#584) #1313

Bump urllib3 from 2.0.6 to 2.0.7 (#584)

Bump urllib3 from 2.0.6 to 2.0.7 (#584) #1313

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"