Is there some method to emit sub-step timings during a test.
eg. I have a build/test step that actually is running ~10 sub steps.
I’d like way to the web UI to parse the output and identify each substep with a timing and a friendly name.
Is there any way to do this?
Hi! You could output the timing, but I don’t think CI will split the time itself. Alternatively, you could build a workflow, in which case you’d get the timings you want, but each step needs to boot a new container. As you add more steps, you will pay more and more just in container boot time alone.
Hope that helps!
François