From 16ca94c6b1092734abf0c86f80abc8f16958a806 Mon Sep 17 00:00:00 2001 From: sjpark608 Date: Tue, 20 Aug 2024 14:58:51 -0700 Subject: [PATCH] removing hw test and matching version --- .bumpversion.cfg | 2 +- .../workflows/build-and-publish-TestPyPI.yml | 46 ++++++++++--------- setup.py | 2 +- 3 files changed, 26 insertions(+), 24 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6840aebb..33bac12e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,3 +1,3 @@ [bumpversion] tag_name = rc/v{new_version} -current_version = 1.2.17 +current_version = 1.2.20 diff --git a/.github/workflows/build-and-publish-TestPyPI.yml b/.github/workflows/build-and-publish-TestPyPI.yml index 47be8f28..e919244d 100644 --- a/.github/workflows/build-and-publish-TestPyPI.yml +++ b/.github/workflows/build-and-publish-TestPyPI.yml @@ -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 diff --git a/setup.py b/setup.py index 5378d70f..bfe1dde9 100644 --- a/setup.py +++ b/setup.py @@ -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",