Onsi Fakhouri
Onsi Fakhouri
that looks like you're just running one test suite. how many suites do you have and how have you organized them?
btw this section of the docs: https://onsi.github.io/ginkgo/#mental-model-go-modules-packages-and-tests describes how in go and ginkgo each suite is a separate package
The reason I was asking is because if you have ``` tests/A tests/B tests/C tests/smoke ``` where `A`, `B`, `C`, and `smoke` are directories then `ginkgo -v --mod=vendor ./tests` won't...
got it - so what you have is a single suite and you are wanting to run different subsets of the suite with a single invocation of ginkgo. that is...
yes if you run a single invocation of ginkgo then ginkgo will concatenate the results into a single file unless you use `--keep-separate-reports`. I suggest reading [this part of the...
how are you generating the pdf report?
ginkgo’s json format includes the number of attempts for each spec: https://github.com/onsi/ginkgo/blob/52065f1468cb733513440a92dacdb4ec20978b67/types/types.go#L161 the junit format does not support adding structured information for each spec so the number of attempts must...
i have no recommendation for you, sorry. this is the first time i’ve seen a request for a pdf version of the report. the junit format does not support adding...
Correct - again, the junit format does not support such things. Perhaps you can step back and share the problem you are trying to solve so I can help. Is...
In case there's interest, please take a look at the new proposal for managing shared resources and having finer-grained control over parallelism here: https://github.com/onsi/ginkgo/issues/1292