-
Notifications
You must be signed in to change notification settings - Fork 3
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
(Feat): Parse BEP TestSummary #242
Open
TylerJang27
wants to merge
16
commits into
main
Choose a base branch
from
tyler/more-bep-data
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
68d9654
parsing labels
TylerJang27 6c3a060
validated an upload was happening correctly, now just need to attach …
TylerJang27 37cc44c
set override pass
TylerJang27 b30df0d
small test fix
TylerJang27 81e099a
finish implementing
TylerJang27 6f4bb2e
fix existing tests
TylerJang27 c7ea240
add integration test
TylerJang27 7556bd4
add upload quarantine integration test
TylerJang27 bc51900
additional unit test
TylerJang27 cf9cac3
add versioning notes
TylerJang27 feac42f
fix wasm tests
TylerJang27 1862d2a
fix mac
TylerJang27 a496282
fix mac again
TylerJang27 6715bd7
address comments
TylerJang27 3f3ee78
fix test
TylerJang27 102b20d
make enum optional again
TylerJang27 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"id": { | ||
"testResult": { | ||
"label": "//trunk/hello_world/cc:hello_test", | ||
"run": 1, | ||
"shard": 1, | ||
"attempt": 1, | ||
"configuration": { | ||
"id": "2136e65c67d9ba6b2652accfbf6533486c16692a484f4dc7ea7756de0edc13a6" | ||
} | ||
} | ||
}, | ||
"children": [ | ||
{ | ||
"testResult": { | ||
"label": "//trunk/hello_world/cc:hello_test", | ||
"run": 1, | ||
"shard": 1, | ||
"attempt": 2, | ||
"configuration": { | ||
"id": "2136e65c67d9ba6b2652accfbf6533486c16692a484f4dc7ea7756de0edc13a6" | ||
} | ||
} | ||
} | ||
], | ||
"testResult": { | ||
"testActionOutput": [ | ||
{ | ||
"name": "test.xml", | ||
"uri": "${URI_FAIL}" | ||
} | ||
], | ||
"testAttemptDurationMillis": "43", | ||
"status": "FAILED", | ||
"testAttemptStartMillisEpoch": "1733811443963", | ||
"executionInfo": { | ||
"strategy": "linux-sandbox", | ||
"timingBreakdown": { | ||
"child": [], | ||
"name": "totalTime", | ||
"time": "0.043s" | ||
} | ||
}, | ||
"testAttemptStart": "2024-12-10T06:17:23.963Z", | ||
"testAttemptDuration": "0.043s" | ||
} | ||
} | ||
{ | ||
"id": { | ||
"testResult": { | ||
"label": "//trunk/hello_world/cc:hello_test", | ||
"run": 1, | ||
"shard": 1, | ||
"attempt": 2, | ||
"configuration": { | ||
"id": "2136e65c67d9ba6b2652accfbf6533486c16692a484f4dc7ea7756de0edc13a6" | ||
} | ||
} | ||
}, | ||
"testResult": { | ||
"testActionOutput": [ | ||
{ | ||
"name": "test.xml", | ||
"uri": "${URI_PASS}" | ||
} | ||
], | ||
"testAttemptDurationMillis": "44", | ||
"status": "PASSED", | ||
"testAttemptStartMillisEpoch": "1733811444011", | ||
"executionInfo": { | ||
"strategy": "linux-sandbox", | ||
"timingBreakdown": { | ||
"child": [], | ||
"name": "totalTime", | ||
"time": "0.044s" | ||
} | ||
}, | ||
"testAttemptStart": "2024-12-10T06:17:24.011Z", | ||
"testAttemptDuration": "0.044s" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ended up making it optional again since that allows us to better deserialize. Otherwise we need to have some versioned logic here for deserializing from meta.json, which doesn't seem worth the effort for this particular case