Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: temporary workaround for the issue where typeguard 2.2.2 is installed #529

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
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
if dpkg -l | grep -q python3-typeguard; then

Check warning on line 32 in .github/workflows/pytest.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (typeguard)
sudo apt remove -y python3-typeguard

Check warning on line 33 in .github/workflows/pytest.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (typeguard)
pip install typeguard

Check warning on line 34 in .github/workflows/pytest.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (typeguard)
ymski marked this conversation as resolved.
Show resolved Hide resolved
fi

- name: Get package list
run: |
Expand Down
Loading