Skip to content

Commit

Permalink
fix: temporary workaround for the issue where typeguard 2.2.2 is inst…
Browse files Browse the repository at this point in the history
…alled (#529)

* feat: if typeguard=2.2.2, install laitest typeguard

Signed-off-by: h-suzuki <[email protected]>

* add: ignore spellcheck

---------

Signed-off-by: h-suzuki <[email protected]>
  • Loading branch information
h-suzuki-isp authored Sep 12, 2024
1 parent c2a6173 commit 9ede8ba
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 9ede8ba

Please sign in to comment.