-
Notifications
You must be signed in to change notification settings - Fork 227
48 lines (38 loc) · 1.18 KB
/
python_sdk_unit_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
name: SDK Unit Tests
run-name: "SDK Unit Tests ${{ github.ref_name }} by @${{ github.actor }}"
on:
pull_request:
paths:
- 'sdks/python/**'
jobs:
UnitTests:
name: Units_Python_${{matrix.python_version}}
runs-on: ubuntu-latest
defaults:
run:
working-directory: sdks/python/
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Print environment variables
run: env
- name: Print event object
run: cat $GITHUB_EVENT_PATH
- name: Print the PR title
run: echo "${{ github.event.pull_request.title }}"
- name: Setup Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install opik
run: pip install .
- name: Install test requirements
run: |
cd ./tests
pip install --no-cache-dir --disable-pip-version-check -r test_requirements.txt
- name: Running SDK Unit Tests
run: python -m pytest --cov=src/opik -vv tests/unit/