Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Remove pinch link tests (#184)
Browse files Browse the repository at this point in the history
* Remove pinch link tests

* Install rosdeps in CI

* Apt update too

* Checkout submodules too
  • Loading branch information
sea-bass authored Jan 24, 2024
1 parent dfc64d5 commit dc41382
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 197 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
container: picknikciuser/moveit-studio:${{ needs.setup.outputs.image_tag }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
# The lo interfaces will not have multicast, and will barf trying to claim a participant index
# with the default cyclone dds config. We set one for the unit tests to be able to execute.
- name: Configure DDS
Expand All @@ -50,6 +52,14 @@ jobs:
</Domain>
</CycloneDDS>
EOF
- name: Install rosdeps
run: |
. /opt/ros/humble/setup.sh
. /opt/underlay_ws/install/setup.sh
. /opt/overlay_ws/install/setup.sh
apt-get update
rosdep update
rosdep install --from-paths src --ignore-src -r -y
- name: Run colcon build
run: |
. /opt/ros/humble/setup.sh
Expand Down
5 changes: 0 additions & 5 deletions src/picknik_ur_studio_integration_testing/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ ament_add_gtest_executable(test_get_planning_groups test_get_planning_groups.cpp
target_link_libraries(test_get_planning_groups moveit_studio_agent::do_objective_test_fixture)
add_ros_test(launch/test_get_planning_groups.test.py TIMEOUT 120 ARGS "test_binary_dir:=${CMAKE_CURRENT_BINARY_DIR}")

# Integration test for ObjectiveServerNode running with other Agent nodes using real Behaviors
ament_add_gtest_executable(test_ur5e_pinch_p_stop test_ur5e_pinch_p_stop.cpp)
target_link_libraries(test_ur5e_pinch_p_stop moveit_studio_agent::do_objective_test_fixture)
add_ros_test(launch/test_ur5e_pinch_p_stop.test.py TIMEOUT 120 ARGS "test_binary_dir:=${CMAKE_CURRENT_BINARY_DIR}")

# Install config files needed at runtime by integration tests
install(
DIRECTORY
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit dc41382

Please sign in to comment.