Skip to content

Commit 8479f3c

Browse files
committed
Merge branch 'dev' into staging
2 parents ae84e2c + 59f7aa8 commit 8479f3c

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

.github/workflows/build-and-publish-TestPyPI.yml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -69,26 +69,28 @@ jobs:
6969
git config user.email ${{ env.commit_email }}
7070
git cherry-pick ${{ env.bump_commit }}
7171
git push origin dev
72-
Hardware_Test:
73-
needs: publish
74-
name: Hardware Tests
75-
runs-on: [self-hosted, linux, ARM64, hw-test]
76-
strategy:
77-
fail-fast: false
78-
matrix:
79-
python-version: ["3.9"]
8072
81-
steps:
82-
- name: Checkout
83-
uses: actions/checkout@v3
84-
- name: Install Dependencies
85-
run: |
86-
python -m venv venv_hardware_test
87-
source venv_hardware_test/bin/activate
88-
python -m pip install --upgrade pip
89-
python -m pip install pytest
90-
if [ -f requirements_hw_test.txt ]; then pip install -r requirements_hw_test.txt; fi
91-
- name: Test with pytest
92-
run: |
93-
source venv_hardware_test/bin/activate
94-
python -m pytest ./tests/hardware_tests
73+
74+
# Hardware_Test:
75+
# needs: publish
76+
# name: Hardware Tests
77+
# runs-on: [self-hosted, linux, ARM64, hw-test]
78+
# strategy:
79+
# fail-fast: false
80+
# matrix:
81+
# python-version: ["3.9"]
82+
83+
# steps:
84+
# - name: Checkout
85+
# uses: actions/checkout@v3
86+
# - name: Install Dependencies
87+
# run: |
88+
# python -m venv venv_hardware_test
89+
# source venv_hardware_test/bin/activate
90+
# python -m pip install --upgrade pip
91+
# python -m pip install pytest
92+
# if [ -f requirements_hw_test.txt ]; then pip install -r requirements_hw_test.txt; fi
93+
# - name: Test with pytest
94+
# run: |
95+
# source venv_hardware_test/bin/activate
96+
# python -m pytest ./tests/hardware_tests

0 commit comments

Comments
 (0)