Skip to content

Commit

Permalink
Merge branch 'dev' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
sjpark608 committed Aug 20, 2024
2 parents ae84e2c + 59f7aa8 commit 8479f3c
Showing 1 changed file with 24 additions and 22 deletions.
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

0 comments on commit 8479f3c

Please sign in to comment.