Skip to content

Replace localstack with minio #440

Replace localstack with minio

Replace localstack with minio #440

name: Lumigator backend tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "**"
jobs:
backend-integration-tests:
name: Backend integration tests - Python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install Python
run: uv python install
working-directory: lumigator/python/mzai/backend
- name: Lint
run: uvx ruff check --config ruff.toml
continue-on-error: false
- name: Run backend unit tests
run: make test-backend-unit
- name: Run backend integration tests
run: AUTO_TEST_RUN=y make test-backend-integration