Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removing hw test and matching version #433

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[bumpversion]
tag_name = rc/v{new_version}
current_version = 1.2.17
current_version = 1.2.20
46 changes: 24 additions & 22 deletions .github/workflows/build-and-publish-TestPyPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,26 +69,28 @@ jobs:
git config user.email ${{ env.commit_email }}
git cherry-pick ${{ env.bump_commit }}
git push origin dev
Hardware_Test:
needs: publish
name: Hardware Tests
runs-on: [self-hosted, linux, ARM64, hw-test]
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
run: |
python -m venv venv_hardware_test
source venv_hardware_test/bin/activate
python -m pip install --upgrade pip
python -m pip install pytest
if [ -f requirements_hw_test.txt ]; then pip install -r requirements_hw_test.txt; fi
- name: Test with pytest
run: |
source venv_hardware_test/bin/activate
python -m pytest ./tests/hardware_tests

# Hardware_Test:
# needs: publish
# name: Hardware Tests
# runs-on: [self-hosted, linux, ARM64, hw-test]
# strategy:
# fail-fast: false
# matrix:
# python-version: ["3.9"]

# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Install Dependencies
# run: |
# python -m venv venv_hardware_test
# source venv_hardware_test/bin/activate
# python -m pip install --upgrade pip
# python -m pip install pytest
# if [ -f requirements_hw_test.txt ]; then pip install -r requirements_hw_test.txt; fi
# - name: Test with pytest
# run: |
# source venv_hardware_test/bin/activate
# python -m pytest ./tests/hardware_tests
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="edgepi-python-sdk",
version="1.2.17",
version="1.2.20",
author="S.Park",
author_email="spark@osensa.com",
description="EdgePi Python SDK package",
Expand Down
Loading