Skip to content

Commit

Permalink
fix: pass pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
atsushi421 authored Oct 19, 2023
1 parent 21b2447 commit 75b1f61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ros2caret/verb/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,9 @@ def _fini():

if args.record_clock:
// cspell: ignore preexec, setpgrp
clock_recorder = subprocess.Popen(['ros2', 'run', 'caret_trace', 'clock_recorder'], preexec_fn=os.setpgrp)
clock_recorder = subprocess.Popen(
['ros2', 'run', 'caret_trace', 'clock_recorder'],
preexec_fn=os.setpgrp)
else:
clock_recorder = None
execute_and_handle_sigint(_run, _fini)
Expand Down

0 comments on commit 75b1f61

Please sign in to comment.