Skip to content

Add some fallback handling for issues (#271) #833

Add some fallback handling for issues (#271)

Add some fallback handling for issues (#271) #833

Workflow file for this run

name: Python Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main, dev ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Set up Python dependency cache
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('pyproject.toml') }}-${{ steps.get_date.outputs.date }}
- name: Install Python dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Install Dependencies
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'
- name: Generate Prisma Client
run: poetry run prisma generate
- name: Test with pytest
run: poetry run pytest --cov --without-integration .