Skip to content

Commit

Permalink
Merge pull request #884 from k-okada/add_pyyaml_test
Browse files Browse the repository at this point in the history
face_detector is released, so remove .travis.rosinstall.noetic . add test to check with latest pyyaml from pip
  • Loading branch information
k-okada authored Jan 20, 2024
2 parents 29fac6c + 1a98ce8 commit 8bb999d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
CONTAINER: ubuntu:18.04
- ROS_DISTRO: noetic
CONTAINER: ubuntu:20.04
USE_DEB : false # to use .travis.rosinstall.noetic for face_detector
- ROS_DISTRO: noetic
CONTAINER: ubuntu:20.04
BEFORE_SCRIPT: "pip3 install -U --user pyyaml"

container: ${{ matrix.CONTAINER }}
steps:
Expand Down
3 changes: 0 additions & 3 deletions .travis.rosinstall.noetic

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __init__(self, settings):
resolved_yaml = resolved_yaml[len("file://"):]

with open(resolved_yaml) as f:
yaml_data = yaml.load(f)
yaml_data = yaml.safe_load(f)
self.setupButtons_with_yaml_data(yaml_data=yaml_data, namespace=namespace)

self.show()

0 comments on commit 8bb999d

Please sign in to comment.