Skip to content

Commit

Permalink
Fix travis ci failure due to setuptool install
Browse files Browse the repository at this point in the history
When install avocado framework, it needs required package: setuptool
But  ModuleNotFoundError: No module named 'setuptools_rust' if not proper pip is used

Signed-off-by: chunfuwen <[email protected]>
  • Loading branch information
chunfuwen committed Aug 4, 2022
1 parent 2de2d1e commit 50c959b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ jobs:
fetch-depth: 0
- name: Install avocado libs
working-directory: ./avocado-libs
run: pip install -e .
run: |
python -m pip install --upgrade pip
pip install 'setuptools-rust==1.1.2'
pip install -e .
- name: Finish installing dependencies
run: |
pip install -e .
Expand Down

0 comments on commit 50c959b

Please sign in to comment.