Files
qdrant-client/.github/workflows/integration-tests.yml
T
dependabot[bot] a391f86c3c chore(deps): bump dcarbone/install-jq-action from 3.2.0 to 4.0.1 (#1317)
Bumps [dcarbone/install-jq-action](https://github.com/dcarbone/install-jq-action) from 3.2.0 to 4.0.1.
- [Release notes](https://github.com/dcarbone/install-jq-action/releases)
- [Commits](https://github.com/dcarbone/install-jq-action/compare/b7ef57d46ece78760b4019dbc4080a1ba2a40b45...4fcb5062d7ce9bc4382d1a352d19ba3ba2c317c1)

---
updated-dependencies:
- dependency-name: dcarbone/install-jq-action
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-09-16 00:25:02 +07:00

79 lines
2.3 KiB
YAML

name: Integration tests
on:
push:
branches: [ master ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
python-version:
- '3.10.x'
- '3.11.x'
- '3.12.x'
- '3.13.x'
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} test
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install jq
uses: dcarbone/install-jq-action@4fcb5062d7ce9bc4382d1a352d19ba3ba2c317c1 # v4.0.1
- name: Install dependencies
run: |
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --no-interaction --no-ansi --all-extras
- name: Run async client generation tests
run: |
if [[ ${{ matrix.python-version }} == "3.10.x" ]]; then
./tests/async-client-consistency-check.sh
fi
shell: bash
- name: Run inspection cache population tests
run: |
if [[ ${{ matrix.python-version }} == "3.10.x" ]]; then
./tests/inspection-cache-consistency-check.sh
fi
shell: bash
- name: Check conversion coverage
run: |
./tests/coverage-test.sh
shell: bash
- name: Run Python doc tests
run: |
python -m doctest qdrant_client/local/local_collection.py
- name: Run integration tests
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
./tests/integration-tests.sh
shell: bash
- name: Backward compatibility integration tests
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
QDRANT_VERSION='v1.18.3' ./tests/integration-tests.sh
shell: bash
- name: Upload failed snapshot if tests fail
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: failed_snapshot
path: failed_snapshot.snapshot
retention-days: 10