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
When running conftest test -o json >results.json , It is giving output only success count. How do I get a detailed output summary.
The text was updated successfully, but these errors were encountered:
I think that's because the "0" values are being omitted while the result set is being marshaled (https://github.com/open-policy-agent/conftest/blob/master/output/json.go#L37) You might have already noticed total numbers and pretty-printing are done by the implementors of the various output types, and there are repetitive code-blocks that individually do this for each output type (like: https://github.com/open-policy-agent/conftest/blob/v0.46.0/output/standard.go#L99) Therefore, we might consider exporting the common logic to re-usable components/functions where we can call from various output types
Sorry, something went wrong.
No branches or pull requests
When running conftest test -o json >results.json , It is giving output only success count.
How do I get a detailed output summary.
The text was updated successfully, but these errors were encountered: