-
Notifications
You must be signed in to change notification settings - Fork 0
267 lines (228 loc) · 7.97 KB
/
Copy pathinstallation_tests.yml
File metadata and controls
267 lines (228 loc) · 7.97 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
name: Installation Tests
on:
schedule:
- cron: '0 12 * * *' # runs every day at noon UTC
workflow_dispatch:
jobs:
test-opiksh:
name: opik.sh (main README)
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Python dependencies
run: |
pip install -r ${{ github.workspace }}/tests_end_to_end/test_requirements.txt
pip install opik
playwright install chromium
- name: Install using opik.sh
env:
OPIK_USAGE_REPORT_ENABLED: false
run: |
cd ${{ github.workspace }}
./opik.sh
- name: Run trace test
run: |
cd ${{ github.workspace }}/tests_end_to_end
export PYTHONPATH='.'
pytest -xvs tests/Installation/test_trace_logging.py --browser chromium
- name: Stop Opik
if: always()
run: |
cd ${{ github.workspace }}
./opik.sh --stop
test-docker-compose-up:
name: docker compose up --detach (Comet docs)
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Python dependencies
run: |
pip install -r ${{ github.workspace }}/tests_end_to_end/test_requirements.txt
pip install opik
playwright install chromium
- name: Install using docker compose up --detach
env:
OPIK_USAGE_REPORT_ENABLED: false
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik up --detach
- name: Check Docker pods are up (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
shell: bash
- name: Check backend health (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_backend.sh
./tests_end_to_end/installer_utils/check_backend.sh
shell: bash
- name: Run trace test
run: |
cd ${{ github.workspace }}/tests_end_to_end
export PYTHONPATH='.'
pytest -xvs tests/Installation/test_trace_logging.py --browser chromium
- name: Stop Opik
if: always()
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik down
test-docker-compose-build:
name: docker compose up --build (Comet docs)
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Python dependencies
run: |
pip install -r ${{ github.workspace }}/tests_end_to_end/test_requirements.txt
pip install opik
playwright install chromium
- name: Install with --build flag
env:
OPIK_USAGE_REPORT_ENABLED: false
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik up -d --build
- name: Check Docker pods are up (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
shell: bash
- name: Check backend health (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_backend.sh
./tests_end_to_end/installer_utils/check_backend.sh
shell: bash
- name: Run trace test
run: |
cd ${{ github.workspace }}/tests_end_to_end
export PYTHONPATH='.'
pytest -xvs tests/Installation/test_trace_logging.py --browser chromium
- name: Stop Opik
if: always()
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik down
test-docker-compose-with-version:
name: Set version - docker compose (deployment README)
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Python dependencies
run: |
pip install -r ${{ github.workspace }}/tests_end_to_end/test_requirements.txt
pip install opik
playwright install chromium
- name: Install with docker compose with specific version set
env:
OPIK_USAGE_REPORT_ENABLED: false
run: |
cd ${{ github.workspace }}/deployment/docker-compose
export OPIK_VERSION=1.6.5
docker compose -f docker-compose.yaml --profile opik up -d
- name: Check Docker pods are up (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
shell: bash
- name: Check backend health (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_backend.sh
./tests_end_to_end/installer_utils/check_backend.sh
shell: bash
- name: Run trace test
run: |
cd ${{ github.workspace }}/tests_end_to_end
export PYTHONPATH='.'
pytest -xvs tests/Installation/test_trace_logging.py --browser chromium
- name: Stop Opik
if: always()
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik down
test-docker-compose-with-pull:
name: Docker compose pull + up (Deployment README)
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Python dependencies
run: |
pip install -r ${{ github.workspace }}/tests_end_to_end/test_requirements.txt
pip install opik
playwright install chromium
- name: Install with docker compose after pulling latest version
env:
OPIK_USAGE_REPORT_ENABLED: false
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik pull
docker compose -f docker-compose.yaml --profile opik up -d
- name: Check Docker pods are up (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
./tests_end_to_end/installer_utils/check_docker_compose_pods.sh
shell: bash
- name: Check backend health (Local)
run: |
chmod +x ./tests_end_to_end/installer_utils/check_backend.sh
./tests_end_to_end/installer_utils/check_backend.sh
shell: bash
- name: Run trace test
run: |
cd ${{ github.workspace }}/tests_end_to_end
export PYTHONPATH='.'
pytest -xvs tests/Installation/test_trace_logging.py --browser chromium
- name: Stop Opik
if: always()
run: |
cd ${{ github.workspace }}/deployment/docker-compose
docker compose --profile opik down