Merge pull request #91 from espressif/bugfix/ci_cryptography_install

ci: use dl.espressif.com/pypi for wheels, install cryptography wheel
This commit is contained in:
Mahavir Jain 2022-09-09 10:11:32 +05:30 committed by GitHub
commit c90cd2f533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -88,8 +88,8 @@ jobs:
path: test_app/build
- name: Install Python packages
env:
PIP_EXTRA_INDEX_URL: "https://www.piwheels.org/simple"
run: pip install pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
run: pip install --only-binary cryptography pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf
- name: Run Test App on target
working-directory: test_app
run: pytest --junit-xml=./test_app_results_${{ matrix.idf_target }}_${{ matrix.idf_ver }}.xml --target=${{ matrix.idf_target }}

View File

@ -63,8 +63,8 @@ jobs:
path: usb/test_app/build
- name: Install Python packages
env:
PIP_EXTRA_INDEX_URL: "https://www.piwheels.org/simple"
run: pip install pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
run: pip install --only-binary cryptography pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf
- name: Run USB Test App on target
working-directory: usb/test_app
run: pytest --target=${{ matrix.idf_target }}