We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, thank you for this interesting tool!
Would it be possible to put the Prettify function into a separate package for use as a library?
Now when you import gotestdox, you also get all the command dependencies like "color"...
Was testing it with go-test-report
go-test-report
--- a/go.mod +++ b/go.mod @@ -3,6 +3,7 @@ module github.com/vakenbolt/go-test-report go 1.17 require ( + github.com/bitfield/gotestdox v0.2.2 github.com/spf13/cobra v1.7.0 github.com/stretchr/testify v1.6.1 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c @@ -11,7 +12,12 @@ require ( require ( github.com/davecgh/go-spew v1.1.1 // indirect + github.com/fatih/color v1.15.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.19 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/spf13/pflag v1.0.5 // indirect + golang.org/x/sys v0.10.0 // indirect + golang.org/x/text v0.11.0 // indirect )
The text was updated successfully, but these errors were encountered:
https://github.com/afbjorklund/go-test-report/tree/gotestdox adds a --testdox flag (and a DisplayName)
--testdox
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi, thank you for this interesting tool!
Would it be possible to put the Prettify function into a separate package for use as a library?
Now when you import gotestdox, you also get all the command dependencies like "color"...
Was testing it with
go-test-report
The text was updated successfully, but these errors were encountered: