-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix golang test ingestion #33
Conversation
Can you please add an example |
@porridge you can find an example of The problem is that,
It's clearly an issue in
Yes, it is. But
We have constraints on DB schema for the table where test results are ingested, and all fields (except |
Thanks for the link. So here is my understanding of the situation:
Since the parser we use is fine with the empty name, perhaps we are being overzealous by making the name required? Maybe we should relax the schema instead? It seems more flexible to load all data into the bigtable, rather than silently drop it at the ingestion point? |
After a conversation, we will make the following changes:
|
dc3ce22
to
5323c39
Compare
5323c39
to
0987df8
Compare
We have an issue that
go-junit-report
creates failure forruntime.MemStats
dumps in the log.An example in CSV:
These CSV records are wrong, and BigQuery cannot ingest them. Also, they should not be part of the test failure collection process because it's part of logging information and not actual test failure.