Skip to content

Stability

Stability #64

Workflow file for this run

name: Stability
on:
workflow_dispatch:
schedule:
- cron: "0 18 * * *"
jobs:
long-tests:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
pip install pymilvus
- name: Run full functional suite
run: pytest -q --tb=short -m "not slow and not soak" --ignore=tests/benchmark
- name: Run slow stability tests
run: pytest -q --tb=short -m "slow and not soak" --ignore=tests/benchmark
- name: Run performance benchmark
run: pytest tests/benchmark/ -v -s