Adding job logs support to health endpoint [LUMI-211] #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SDK tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
sdk-integration-tests: | |
name: SDK integration tests - Python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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/sdk | |
- name: Setup containers | |
run: make start-lumigator-build | |
- name: Run tests | |
run: uv run pytest -o "python_files=int_test_*.py" tests | |
working-directory: lumigator/python/mzai/sdk | |
- name: Teardown containers | |
run: make stop-lumigator |