Skip to content

Commit

Permalink
Use -runtime packages for test_depend
Browse files Browse the repository at this point in the history
  • Loading branch information
jspricke committed Jan 9, 2024
1 parent 694884c commit 1e9f455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bloom/generators/debian/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def generate_substitutions_from_package(
# https://wiki.debian.org/BuildProfileSpec
data['BuildDepends'] = sorted(
set(format_depends(build_depends, resolved_deps)) |
set(p + ' <!nocheck>' for p in format_depends(test_depends, resolved_deps))
set(p + ' <!nocheck>' for p in format_depends(test_depends, resolved_deps, ros_distro if runtime_pkg else ""))
)
data['Replaces'] = sorted(
set(format_depends(replaces, resolved_deps))
Expand Down

0 comments on commit 1e9f455

Please sign in to comment.