Sign in
pigweed
/
third_party
/
github
/
project-chip
/
connectedhomeip
/
76848fe25811fbf55a9c6b92da5d0b77a46221b4
/
.
/
scripts
/
tools
/
summarize_fail.py
blob: 90d60ba586037901911e07ad7649a2e359585f17 [
file
] [
log
] [
blame
]
import
pandas
as
pd
df
=
pd
.
read_json
(
"runlist.json"
)
print
(
"Recent Failures:"
)
print
(
df
)
print
(
"Percentage Frequency:"
)
print
(
df
[
"workflowName"
].
value_counts
(
normalize
=
True
)
*
100
)