Multiple test "groupings" - outputs and reports #1514
-
👋🏻 Hey there! I'm using
We target each group via label filters. The first group is the largest - as that group has no dependency on a shared stateful resource like database, etc... The second group is the smallest. We run
I've a couple questions on ways to make the final outputs a bit more streamlined. I'm already using
Thanks in advance 🙏🏻 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hey @bradleygore The first thing I’d suggest is you can use the For your first question - there isn't a mechanism to suppress that output, no. If you'd like to work on a PR I can point you at how we could add such a mechanism. For your second question - here too I don't have a great answer for you unfortunately. JUnit is "just XML" so you could write some code to merge the reports by hand - but that could get gnarly. It might be easier to manipulate Ginkgo's JSON output in this way and then pass the merged But there isn't anything "out of the box" so to speak. Just the |
Beta Was this translation helpful? Give feedback.
hey @bradleygore
The first thing I’d suggest is you can use the
Serial
decorator to mark the serial tests and then just have everything work as a singleginkgo -r
invocation. You'll lose the ability to run the serial specs in parallel to the parallel specs via different GitHub actions - but if that's a trade off you're willing to make then that could work.For your first question - there isn't a mechanism to suppress that output, no. If you'd like to work on a PR I can point you at how we could add such a mechanism.
For your second question - here too I don't have a great answer for you unfortunately. JUnit is "just XML" so you could write some code to merge the reports by hand - but that…