Anders Björklund
Anders Björklund
Closes #133 This is the default option, for `kconfig-conf`. Just a small modification to the "oldconfig": ```diff @@ -82,9 +81,7 @@ if isinstance(node.item, Symbol): sym = node.item - # Skip...
Not able to find an `oldaskconfig` script ? ``` --oldaskconfig Start a new configuration using a line-oriented program --oldconfig Update a configuration using a provided .config as base --silentoldconfig Same...
Currently this fork is not being developed, or maintained with updates... * Update go version * Use `go:embed` * Update dependencies * Add `gotestsum` parameters Might want to start a...
``` -p, --groupPackage group tests by package instead of by number ``` Closes #50 Closes #54
Since it allows _both_ progress and json, at the same time (not either / or). It also has a default format that is more friendly on the eyes than `go...
Make it possible to show test names as sentences: https://bitfieldconsulting.com/golang/test-names ```diff } + if flags.testdox { + status.DisplayName = gotestdox.Prettify(status.TestName) + } allTests[key] = status ``` https://github.com/bitfield/gotestdox * `TestValidIsFalseForInvalidInput` =>...
When reporting results from a previously recorded test run, rather than streaming the results from a test being run now. ``` gotestsum --jsonfile test_report.json --post-run-command "go-test-report --output test_report.html" ``` *...
There are some features in go1.16, that would improve things. * #55 * #59 Suggest going with go1.17 as a reasonable minimum version... @vakenbolt Looking for a new maintainer, I...
More recent go versions have embed built-in: https://pkg.go.dev/embed
This was "commented out" in the dockershim tests (of critest) https://github.com/kubernetes-sigs/cri-tools/commit/4bb671441dcbc3a42d763e0624e0d656fb305315#diff-fb3f779b47c369fad04d8812ff6e9d8fa84fd10dededf3bea1cf6de29b6f7ecdR258 ```go // NOTE: dockershim does not populate that field, so we do not have to test it if framework.TestContext.RuntimeServiceAddr...