2024-01-02 23:42:00 +08:00
|
|
|
name: Run Pytest
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2024-04-22 11:41:13 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-04-24 12:53:23 +08:00
|
|
|
python-version:
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
2024-01-02 23:42:00 +08:00
|
|
|
|
|
|
|
steps:
|
2024-01-09 18:15:25 +08:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
2024-01-02 23:42:00 +08:00
|
|
|
|
2024-04-22 11:41:13 +08:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2024-01-09 18:15:25 +08:00
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
2024-04-22 11:41:13 +08:00
|
|
|
python-version: ${{ matrix.python-version }}
|
2024-01-09 18:15:25 +08:00
|
|
|
cache: 'pip'
|
2024-04-15 11:03:10 +08:00
|
|
|
cache-dependency-path: |
|
|
|
|
./api/requirements.txt
|
|
|
|
./api/requirements-dev.txt
|
2024-01-02 23:42:00 +08:00
|
|
|
|
2024-01-09 18:15:25 +08:00
|
|
|
- name: Install dependencies
|
2024-04-15 11:03:10 +08:00
|
|
|
run: pip install -r ./api/requirements.txt -r ./api/requirements-dev.txt
|
2024-01-02 23:42:00 +08:00
|
|
|
|
2024-04-24 21:52:42 +08:00
|
|
|
- name: Run Unit tests
|
|
|
|
run: dev/pytest/pytest_unit_tests.sh
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
- name: Run ModelRuntime
|
2024-04-18 13:43:15 +08:00
|
|
|
run: dev/pytest/pytest_model_runtime.sh
|
2024-04-08 18:51:46 +08:00
|
|
|
|
|
|
|
- name: Run Tool
|
2024-04-18 13:43:15 +08:00
|
|
|
run: dev/pytest/pytest_tools.sh
|
2024-04-08 18:51:46 +08:00
|
|
|
|
2024-05-03 08:54:40 +08:00
|
|
|
- name: Set up Sandbox
|
|
|
|
uses: hoverkraft-tech/compose-action@v2.0.0
|
|
|
|
with:
|
|
|
|
compose-file: |
|
|
|
|
docker/docker-compose.middleware.yaml
|
|
|
|
services: |
|
|
|
|
sandbox
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
- name: Run Workflow
|
2024-04-18 13:43:15 +08:00
|
|
|
run: dev/pytest/pytest_workflow.sh
|
2024-04-24 17:15:31 +08:00
|
|
|
|
2024-05-10 17:20:30 +08:00
|
|
|
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS)
|
2024-04-26 19:18:42 +08:00
|
|
|
uses: hoverkraft-tech/compose-action@v2.0.0
|
|
|
|
with:
|
|
|
|
compose-file: |
|
|
|
|
docker/docker-compose.middleware.yaml
|
|
|
|
docker/docker-compose.qdrant.yaml
|
|
|
|
docker/docker-compose.milvus.yaml
|
2024-04-29 11:58:17 +08:00
|
|
|
docker/docker-compose.pgvecto-rs.yaml
|
2024-05-10 17:20:30 +08:00
|
|
|
docker/docker-compose.pgvector.yaml
|
2024-04-26 19:18:42 +08:00
|
|
|
services: |
|
|
|
|
weaviate
|
|
|
|
qdrant
|
|
|
|
etcd
|
|
|
|
minio
|
|
|
|
milvus-standalone
|
2024-04-29 11:58:17 +08:00
|
|
|
pgvecto-rs
|
2024-05-10 17:20:30 +08:00
|
|
|
pgvector
|
2024-04-26 19:18:42 +08:00
|
|
|
|
|
|
|
- name: Test Vector Stores
|
2024-04-24 21:52:42 +08:00
|
|
|
run: dev/pytest/pytest_vdb.sh
|