We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae5310e commit 28bdd6aCopy full SHA for 28bdd6a
colcon_parallel_executor/event_handler/parallel_status.py
@@ -4,6 +4,7 @@
4
import sys
5
6
from colcon_core.event_handler import EventHandlerExtensionPoint
7
+from colcon_core.output_style import Style
8
from colcon_core.plugin_system import satisfies_version
9
from colcon_parallel_executor.event.executor import ParallelStatus
10
@@ -29,4 +30,8 @@ def __call__(self, event): # noqa: D102
29
30
data = event[0]
31
32
if isinstance(data, ParallelStatus):
- print(f"[Processing: {', '.join(sorted(data.processing))}]")
33
+ jobs = [
34
+ Style.PackageOrJobName(job)
35
+ for job in sorted(data.processing)
36
+ ]
37
+ print(f"[Processing: {', '.join(jobs)}]")
0 commit comments