-
Notifications
You must be signed in to change notification settings - Fork 38
40 lines (32 loc) · 1.13 KB
/
Copy pathintegration.yml
File metadata and controls
40 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Integration
# The PR/push CI runs offline, deterministic tests. This scheduled job runs the
# `integration`-marked tests that download the real embedding model and hit the
# network — catching upstream model/dependency drift that the fast suite can't.
on:
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: integration-${{ github.ref }}
cancel-in-progress: true
jobs:
integration:
name: Integration (real model + network)
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.12"
- name: Set up uv (fast installs + cache)
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: true
- name: Install
run: uv pip install --system -e ".[dev,server,openai]"
- name: Integration tests (downloads the real embedding model)
run: pytest -m integration