Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
# Run every week at 20:00 on Sunday
- cron: "0 20 * * 0"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.base_ref || github.run_id }}
cancel-in-progress: true

jobs:
ament_lint:
name: Ament lint
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
schedule:
# Run every week at 20:00 on Sunday
- cron: "0 20 * * 0"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.base_ref || github.run_id }}
cancel-in-progress: true

jobs:
ros_distro_from_branch_name:
name: What is the distro?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ def setUp(self):
time.sleep(0.1)

def diagnostics_callback(self, msg):
if msg.status[0].message == 'Node starting up':
# Ignore the task monitor runtime status message
return
if len(msg.status) > 0:
self.message_recieved = True
else:
Expand Down
3 changes: 3 additions & 0 deletions diagnostic_topic_monitor/test/test_topic_age_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ def stat_cb(self, msg):
"""Store message for future processing."""
if len(msg.status) == 0:
return
if msg.status[0].message == 'Node starting up':
# Ignore the task monitor runtime status message
return
if CONFIG_MONITOR_NAME in msg.status[0].name:
self.age_messages.append(msg)

Expand Down
3 changes: 3 additions & 0 deletions diagnostic_topic_monitor/test/test_topic_frequency_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ def stat_cb(self, msg):
"""Store message for future processing."""
if len(msg.status) == 0:
return
if msg.status[0].message == 'Node starting up':
# Ignore the task monitor runtime status message
return
if CONFIG_MONITOR_NAME in msg.status[0].name:
self.freq_messages.append(msg)
else:
Expand Down
Loading