Skip to content

Conversation

@omidk56
Copy link

@omidk56 omidk56 commented Oct 20, 2025

Description

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

Type of Change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration

  • Added new unit/integration tests
  • I stared at the code and made sure it makes sense

Test Configuration:

  • Firmware version:
  • Hardware:
  • Toolchain:
  • SDK:

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published in downstream modules
  • I ran make check; make test to ensure mypy and tests pass

@njsbhu
Copy link

njsbhu commented Nov 20, 2025

To Test multiple Python versions - I would like to add python version after line no. 18 in the code as below

    strategy:
      fail-fast: true
      matrix:
        python-version: [3.10, 3.11]    # test multiple Python versions; add 3.9/3.12

Also I also like to replace install dependency with below

      - name: Install build tools & dependencies
        run: |
          python -m pip install --upgrade pip setuptools wheel
          # Install test/lint tools first so they are available even if requirements fails
          pip install flake8 pytest
          # Install project dependencies if file exists
          if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants