Skip to content

tests: Setup testcontainers for external stores #2

tests: Setup testcontainers for external stores

tests: Setup testcontainers for external stores #2

Workflow file for this run

name: Python tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install --with dev
- name: Run tests
run:
poetry run pytest