mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-08-06 18:11:00 -05:00
* automatic validation scaffold * grpc -> http for filter * More conversions * More conversions * add all fixtures (#39) * add rest-to-grpc convertions (#40) * More conversions * full coverage for conversions * fix imports * add exec permissions Co-authored-by: M. Yusuf Sarıgöz <yusufsarigoz@gmail.com>
36 lines
725 B
YAML
36 lines
725 B
YAML
name: Integration tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9.x'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install poetry
|
|
poetry config virtualenvs.create false
|
|
poetry install --no-interaction --no-ansi
|
|
- name: Run integration tests
|
|
run: |
|
|
./tests/integration-tests.sh
|
|
shell: bash
|
|
- name: Check conversion coverage
|
|
run: |
|
|
./tests/coverage-test.sh
|
|
shell: bash
|
|
|