Daniel Nephin

Results 443 comments of Daniel Nephin

I like the suggestion! It seems that goreleaser makes it pretty easy to do this: https://goreleaser.com/customization/docker/ The goreleaser config for this project is at [.project/goreleaser.yml](https://github.com/gotestyourself/gotestsum/blob/main/.project/goreleaser.yml) The github container registry seems...

I'd like to avoid a separate build step for uploading the image, if possible. I'll try out the goreleaser config to see how it works.

#7198 added `-format=json` to a bunch of the acl commands. It is available in 1.8.0. The first RC for 1.8.0 was just released. More work will need to be done...

Hello, this doesn't look like an error from `gotestsum`, so I guess it has something to do wit how you are running the tests. Can you share the commands you...

Hello, failing test output is captured under `testcase.failure` , you can see an example here: https://github.com/gotestyourself/gotestsum/blob/main/internal/junitxml/testdata/junitxml-report.golden#L60 This seems to work for most CI systems. Do you have an example of...

Unfortunately there is no real official standard. It seems every system does something a little different. There are a few flags to modify the output in the junit.xml to accomodate...

Looking at https://github.com/windyroad/JUnit-Schema/blob/cfa434d4b8e102a8f55b8727b552a0063ee9044e/JUnit.xsd#L150 I'm still a bit confused about how this is supposed to work. That `system-out` tag is at the same level as `testcase`, meaning it's a **sibling** to...

I just noticed that https://github.com/testmoapp/junitxml does actually show it as both a sibling and a child. So I guess that's where it comes from.

We use `tilt ci --output-snapshot-on-exit` and we regularly get snapshots with error like: ``` Error: Timeout after 40m0s: 4 resources waiting ... ``` It seems to be working for us,...

Thanks for the PR! Since all the tests in a package run in the same process, I don't think it's safe to assume anything about which test caused the panic....