Skip to content

Python Wrapper: Implement Import Manager #259

Python Wrapper: Implement Import Manager

Python Wrapper: Implement Import Manager #259

name: Unit Test Python SDK Wrapper
on:
push:
branches:
- master
pull_request:
paths:
- "clients/python-wrapper/**"
jobs:
unit-tests:
name: Unit Test Python SDK Wrapper
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
working-directory: ./clients/python-wrapper
run: pip install -r requirements.txt pylint pytest pytest-md pytest-emoji
- name: Validate Documentation
run: make validate-python-wrapper
- name: Run Pylint
run: make python-wrapper-lint
- name: Run Unit Tests
uses: pavelzw/pytest-action@v2
with:
verbose: true
emoji: true
job-summary: true
custom-arguments: './clients/python-wrapper/tests/utests -q'
click-to-expand: true
report-title: 'Python Wrapper Unit Tests Report'