2022-01-29 21:31:27 +00:00
|
|
|
name: test
|
2021-09-30 11:36:00 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2022-07-31 23:30:23 +00:00
|
|
|
paths:
|
2023-10-26 16:42:29 +00:00
|
|
|
- src/**
|
2022-07-31 23:30:23 +00:00
|
|
|
- tests/**
|
|
|
|
- config/**
|
2023-02-16 09:12:04 +00:00
|
|
|
- pyproject.toml
|
2023-02-17 18:07:59 +00:00
|
|
|
- .pre-commit-config.yml
|
2022-07-31 23:30:23 +00:00
|
|
|
- .github/workflows/test.yml
|
2021-09-30 11:36:00 +00:00
|
|
|
push:
|
|
|
|
branches:
|
2023-10-26 16:42:29 +00:00
|
|
|
- master
|
2022-07-31 23:30:23 +00:00
|
|
|
paths:
|
2023-02-14 20:50:51 +00:00
|
|
|
- src/khoj/**
|
2022-07-31 23:30:23 +00:00
|
|
|
- tests/**
|
|
|
|
- config/**
|
2023-02-16 09:12:04 +00:00
|
|
|
- pyproject.toml
|
2023-02-17 18:07:59 +00:00
|
|
|
- .pre-commit-config.yml
|
2022-07-31 23:30:23 +00:00
|
|
|
- .github/workflows/test.yml
|
2021-09-30 11:36:00 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2022-08-03 18:50:20 +00:00
|
|
|
name: Run Tests
|
2022-08-03 17:00:37 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-10-26 16:42:29 +00:00
|
|
|
container: ubuntu:jammy
|
2023-02-07 00:05:34 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
python_version:
|
2023-02-07 05:57:42 +00:00
|
|
|
- '3.9'
|
|
|
|
- '3.10'
|
2023-06-29 21:54:51 +00:00
|
|
|
- '3.11'
|
2023-10-26 16:42:29 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: ankane/pgvector
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
2023-02-07 05:57:42 +00:00
|
|
|
steps:
|
2022-08-03 17:00:37 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-08-17 02:55:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-12-15 06:15:49 +00:00
|
|
|
|
2023-02-07 00:05:34 +00:00
|
|
|
- name: Set up Python
|
2022-08-03 17:00:37 +00:00
|
|
|
uses: actions/setup-python@v4
|
2021-09-30 11:36:00 +00:00
|
|
|
with:
|
2023-02-07 00:05:34 +00:00
|
|
|
python-version: ${{ matrix.python_version }}
|
2021-12-15 06:15:49 +00:00
|
|
|
|
2023-10-26 16:42:29 +00:00
|
|
|
- name: Install Git
|
|
|
|
run: |
|
|
|
|
apt update && apt install -y git
|
|
|
|
|
2023-03-01 16:56:39 +00:00
|
|
|
- name: ⏬️ Install Dependencies
|
2023-10-26 16:42:29 +00:00
|
|
|
env:
|
|
|
|
DEBIAN_FRONTEND: noninteractive
|
2022-08-03 17:00:37 +00:00
|
|
|
run: |
|
2023-10-26 16:42:29 +00:00
|
|
|
apt update && apt install -y libegl1 sqlite3 libsqlite3-dev libsqlite3-0
|
|
|
|
|
|
|
|
- name: ⬇️ Install Postgres
|
|
|
|
env:
|
|
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|
|
run : |
|
|
|
|
apt install -y postgresql postgresql-client && apt install -y postgresql-server-dev-14
|
|
|
|
|
|
|
|
- name: ⬇️ Install pip
|
|
|
|
run: |
|
|
|
|
apt install -y python3-pip
|
|
|
|
python -m ensurepip --upgrade
|
2022-08-03 17:00:37 +00:00
|
|
|
python -m pip install --upgrade pip
|
2022-08-03 19:37:16 +00:00
|
|
|
|
2023-03-01 16:56:39 +00:00
|
|
|
- name: ⬇️ Install Application
|
2023-10-26 16:42:29 +00:00
|
|
|
run: sed -i 's/dynamic = \["version"\]/version = "0.0.0"/' pyproject.toml && pip install --upgrade .[dev]
|
2021-12-15 06:15:49 +00:00
|
|
|
|
2023-03-01 16:56:39 +00:00
|
|
|
- name: 🧪 Test Application
|
2023-10-26 16:42:29 +00:00
|
|
|
env:
|
|
|
|
POSTGRES_HOST: postgres
|
|
|
|
POSTGRES_PORT: 5432
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_DB: postgres
|
2023-02-17 18:07:59 +00:00
|
|
|
run: pytest
|
2023-08-17 02:55:46 +00:00
|
|
|
timeout-minutes: 10
|