Show test execution lifecycle in console log during parallel execution #334
-
|
Hi, @lyndsey-ferguson I have a question: How can we print test execution in Jenkins console log while we run for ex. on 3 parallel simulators? For now, if I will run tests on 3 parallel simulators I can't see any info about how tests are going, I see info only at the end and I can't see any info in the console during execution, it looks like this: And If I will run on 1 simulator I can see info about each test execution in console: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @alexnot95 currently, you cannot print the execution of each of the workers. I had to pipe the logs of each worker to separate logs because multiple threads writing to the same log ends up writing text over each other and it becomes unreadible. The plugin can be re-worked to have a central log printer that parses the logs from each worker, but that will take time and it is not the top priority right now. I have this issue request that seems to be exactly what you're looking for #294. |
Beta Was this translation helpful? Give feedback.


Hi @alexnot95 currently, you cannot print the execution of each of the workers. I had to pipe the logs of each worker to separate logs because multiple threads writing to the same log ends up writing text over each other and it becomes unreadible.
The plugin can be re-worked to have a central log printer that parses the logs from each worker, but that will take time and it is not the top priority right now. I have this issue request that seems to be exactly what you're looking for #294.