Python: Add Azure DB for PostgreSQL vector store #7772
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: Python Unit Tests | |
on: | |
pull_request: | |
branches: ["main", "feature*"] | |
paths: | |
- "python/**" | |
env: | |
# Configure a constant location for the uv cache | |
UV_CACHE_DIR: /tmp/.uv-cache | |
jobs: | |
python-unit-tests: | |
name: Python Unit Tests | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
experimental: [false] | |
include: | |
- python-version: "3.13.0-beta.4" | |
os: "ubuntu-latest" | |
experimental: true | |
permissions: | |
contents: write | |
defaults: | |
run: | |
working-directory: python | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up uv | |
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }} | |
run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Set up uv | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: irm https://astral.sh/uv/install.ps1 | iex | |
shell: powershell | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Restore uv cache | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.UV_CACHE_DIR }} | |
key: uv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/uv.lock') }} | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Test with pytest | |
run: uv run pytest --junitxml=pytest.xml ./tests/unit | |
- name: Surface failing tests | |
if: always() | |
uses: pmeier/pytest-results-action@main | |
with: | |
path: python/pytest.xml | |
summary: true | |
display-options: fEX | |
fail-on-empty: true | |
title: Test results | |
- name: Minimize uv cache | |
run: uv cache prune --ci | |
python-test-coverage: | |
name: Python Test Coverage | |
runs-on: [ubuntu-latest] | |
continue-on-error: true | |
permissions: | |
contents: write | |
defaults: | |
run: | |
working-directory: python | |
env: | |
PYTHON_VERSION: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup filename variables | |
run: echo "FILE_ID=${{ github.event.number }}" >> $GITHUB_ENV | |
- name: Set up uv | |
run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Restore uv cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.UV_CACHE_DIR }} | |
key: uv-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('**/uv.lock') }} | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Test with pytest | |
run: uv run pytest -q --junitxml=pytest.xml --cov=semantic_kernel --cov-report=term-missing:skip-covered ./tests/unit | tee python-coverage.txt | |
- name: Upload coverage | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-coverage-${{ env.FILE_ID }}.txt | |
path: python/python-coverage.txt | |
overwrite: true | |
retention-days: 1 | |
- name: Upload pytest.xml | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pytest-${{ env.FILE_ID }}.xml | |
path: python/pytest.xml | |
overwrite: true | |
retention-days: 1 | |
- name: Minimize uv cache | |
run: uv cache prune --ci |