-
Notifications
You must be signed in to change notification settings - Fork 80
163 lines (136 loc) · 4.24 KB
/
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: Tests and Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
setup-conda:
name: Setup Conda
runs-on: ubuntu-latest
outputs:
conda_path: ${{ steps.conda-path.outputs.conda_path }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Miniconda
id: conda-path
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: "3.10"
ruff_lint:
name: Ruff Lint
runs-on: ubuntu-latest
needs: setup-conda
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Conda Environment
run: |
echo "Conda path: ${{ needs.setup-conda.outputs.conda_path }}"
source "${{ needs.setup-conda.outputs.conda_path }}/etc/profile.d/conda.sh"
conda env create -f environment.yml
conda activate lotus
pip install -e .
pip install ruff==0.7.2
- name: Run Ruff
run: ruff check .
mypy:
name: Type Check
runs-on: ubuntu-latest
needs: setup-conda
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Conda Environment
run: |
source "${{ needs.setup-conda.outputs.conda_path }}/etc/profile.d/conda.sh"
conda env create -f environment.yml
conda activate lotus
pip install -e .
pip install mypy==1.13.0
- name: Run Mypy
run: mypy lotus/
openai_lm_test:
name: OpenAI Language Model Tests
runs-on: ubuntu-latest
needs: setup-conda
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Conda Environment
run: |
source "${{ needs.setup-conda.outputs.conda_path }}/etc/profile.d/conda.sh"
conda env create -f environment.yml
conda activate lotus
pip install -e .
pip install pytest
- name: Set OpenAI API Key
run: echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> $GITHUB_ENV
- name: Run LM Tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
ENABLE_OPENAI_TESTS: true
run: pytest .github/tests/lm_tests.py
ollama_lm_test:
name: Ollama Language Model Tests
runs-on: ubuntu-latest
needs: setup-conda
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Conda Environment
run: |
source "${{ needs.setup-conda.outputs.conda_path }}/etc/profile.d/conda.sh"
conda env create -f environment.yml
conda activate lotus
pip install -e .
pip install pytest
- name: Start Ollama Container
run: |
docker pull ollama/ollama:latest
docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
timeout=30
while ! curl -s http://localhost:11434/ >/dev/null; do
if [ $timeout -le 0 ]; then
echo "Timed out waiting for Ollama server"
exit 1
fi
echo "Waiting for Ollama server to be ready..."
sleep 1
timeout=$((timeout - 1))
done
docker exec $(docker ps -q) ollama run llama3.2
- name: Run LM Tests
env:
ENABLE_OLLAMA_TESTS: true
run: pytest .github/tests/lm_tests.py
rm_test:
name: Retrieval Model Tests
runs-on: ubuntu-latest
needs: setup-conda
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Conda Environment
run: |
source "${{ needs.setup-conda.outputs.conda_path }}/etc/profile.d/conda.sh"
conda env create -f environment.yml
conda activate lotus
pip install -e .
pip install pytest
- name: Set OpenAI API Key
run: echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> $GITHUB_ENV
- name: Run RM Tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
ENABLE_OPENAI_TESTS: true
ENABLE_LOCAL_TESTS: true
run: pytest .github/tests/rm_tests.py