Skip to content

Improved api

Improved api #1

Workflow file for this run

name: Run Python tests
on:
push:
branches: [ 'main' ]
paths:
- '**.py'
pull_request:
branches: [ 'main' ]
paths:
- '**.py'
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
python3 -m pip install -e src
- name: Run the migrations
run: |
python3 -m flask --app src.flaskapp db upgrade --directory src/flaskapp/migrations
env:
DATABASE_FILENAME: testdb.db
- name: Run tests
run: python3 -m pytest
env:
DATABASE_FILENAME: testdb.db