New issue
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
Output errors in machine-friendly format? #92
Comments
|
Would CSV format work? pytype-single has an --output-errors-csv flag (https://github.com/google/pytype/blob/master/pytype/config.py#L183) that we could expose in pytype. |
|
Probably will be fine. |
|
closing this, reopen if csv is insufficient for some use case. |
|
@alok did you ever complete this integration? |
|
Responding to #634 made me realize that we closed this issue without ever actually exposing |
|
tagging this "good first issue"; plumbing the csv output from |
|
A supported, standard format would be nicer? Many CI systems can already process formats like PEP8, do we really want another one? |
|
Would fixing this just involve adding it as an arg to analyze_project/parse_args.py and getting the errors.csv like single_test.py? |
|
@jollypolly123 that would be the first step, but we would also need to collect the |
Elm has the option to output errors as JSON (via a flag), and something like that is handy for writing tooling around it. I'm trying to integrate
pytypeinto ALE and this would make it a lot easier.The text was updated successfully, but these errors were encountered: