Skip to content

Commit d3781ec

Browse files
committed
explicitly select tests, and run RMF on its own
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
1 parent f8d6578 commit d3781ec

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/nexus_integration_tests.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,17 @@ jobs:
3939
- name: Test - Unit Tests
4040
run: . ./install/setup.bash && RMW_IMPLEMENTATION=rmw_cyclonedds_cpp /ros_entrypoint.sh colcon test --packages-select nexus_motion_planner --event-handlers=console_direct+
4141
- name: Test - Integration test
42-
run: . ./install/setup.bash && cd nexus_demos && RMW_IMPLEMENTATION=rmw_zenoh_cpp /ros_entrypoint.sh python3 -m unittest
42+
run: |
43+
. ./install/setup.bash
44+
cd nexus_demos
45+
RMW_IMPLEMENTATION=rmw_zenoh_cpp /ros_entrypoint.sh python3 -m unittest \
46+
test_invalid_place_on_conveyor.py \
47+
test_parallel_duplicated_wo.py \
48+
test_parallel_wo.py \
49+
test_pick_and_place.py
50+
- name: Test - Integration test with RMF
51+
run: |
52+
. ./install/setup.bash
53+
cd nexus_demos
54+
RMW_IMPLEMENTATION=rmw_zenoh_cpp /ros_entrypoint.sh python3 -m unittest \
55+
test_pick_and_place_rmf.py

0 commit comments

Comments
 (0)