-
Notifications
You must be signed in to change notification settings - Fork 350
91 lines (75 loc) · 2.42 KB
/
run-tests.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Run Tests
env:
# enable colored output
# https://github.com/pytest-dev/pytest/issues/7443
PY_COLORS: 1
on:
push:
branches: ["main"]
paths:
- .github/workflows/run-tests.yml
- src/**
- tests/**
- pyproject.toml
- setup.py
pull_request:
paths:
- .github/workflows/run-tests.yml
- src**
- tests/**
- pyproject.toml
- setup.py
workflow_dispatch:
permissions:
contents: read
jobs:
run_tests:
name: ${{ matrix.test-type }} w/ python ${{ matrix.python-version }} | pydantic ${{ matrix.pydantic_version }} on ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11']
test-type: ['not llm']
llm_model: ['openai/gpt-3.5-turbo']
pydantic_version: ['>=2.4.2']
include:
- python-version: '3.9'
os: 'ubuntu-latest'
test-type: 'llm'
llm_model: 'openai/gpt-3.5-turbo'
pydantic_version: '>=2.4.2'
- python-version: '3.9'
os: 'ubuntu-latest'
test-type: 'llm'
llm_model: 'openai/gpt-3.5-turbo'
pydantic_version: '<2'
- python-version: '3.9'
os: 'ubuntu-latest'
test-type: 'not llm'
llm_model: 'openai/gpt-3.5-turbo'
pydantic_version: '<2'
runs-on: ${{ matrix.os }}
env:
MARVIN_OPENAI_API_KEY: ${{ secrets.MARVIN_OPENAI_API_KEY }}
MARVIN_ANTHROPIC_API_KEY: ${{ secrets.MARVIN_ANTHROPIC_API_KEY }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install Marvin
run: pip install ".[tests]"
- name: Install pydantic v1
run: pip install "pydantic<2"
if: ${{ matrix.pydantic_version == '<2' }}
- name: Install pydantic v2
run: pip install ".[pydantic-v2]"
if: ${{ matrix.pydantic_version == '>=2.4.2' }}
- name: Run ${{ matrix.test-type }} tests (${{ matrix.llm_model }})
run: pytest -vv -m ${{ matrix.test-type }}
env:
MARVIN_LLM_MODEL: ${{ matrix.llm_model }}
if: ${{ !(github.event.pull_request.head.repo.fork && matrix.test-type == 'llm') }}