SDK Unit Tests 648/merge by @alexkuzmik #313
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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/ |