Skip to content

Bump braces from 3.0.2 to 3.0.3 in /app/static #1415

Bump braces from 3.0.2 to 3.0.3 in /app/static

Bump braces from 3.0.2 to 3.0.3 in /app/static #1415

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"