Skip to content

fix: order query iterator results by primary key #79

fix: order query iterator results by primary key

fix: order query iterator results by primary key #79

Workflow file for this run

name: Tests
on:
push:
branches: [main, python-pure]
pull_request:
branches: [main, python-pure]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
exclude:
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.11"
- os: macos-latest
python-version: "3.13"
include:
- os: windows-latest
python-version: "3.10"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
pip install pymilvus
- name: Run tests
run: pytest -x -q --tb=short -m "not slow and not soak" --ignore=tests/benchmark
- name: Run tests with coverage
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
run: pytest --cov=milvus_lite --cov-report=term-missing -q -m "not slow and not soak" --ignore=tests/benchmark