Skip to content

Commit

Permalink
Merge branch 'main' into refactor_docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
h-suzuki-isp authored Sep 12, 2024
2 parents 23a9acc + 9ede8ba commit c5c7142
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ jobs:
rosdep update
rosdep install -i --skip-keys "caret_analyze_cpp_impl" --from-paths . -y --rosdistro humble
- name: Install dependent packages
run: python3 -m pip install -r src/requirements.txt
run: |
python3 -m pip install -r src/requirements.txt
# cSpell:ignore typeguard
if dpkg -l | grep -q python3-typeguard; then
sudo apt remove -y python3-typeguard
fi
- name: Get package list
run: |
Expand Down

0 comments on commit c5c7142

Please sign in to comment.