You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The crux of Ciclops, internally, is the test_summary data structure.
It is computed with a single traversal through the directory where the test artifacts
are held.
Each test file contains a single test execution in a single platform-k8s-postgres.
Each is ingested by a function that then updates the test_summary as a side effect.
And inside of each of these dictionaries, the element in question will be the key.
E.g. the test name, in the dictionary above, after a few iterations, we could have something like
The crux of Ciclops, internally, is the
test_summary
data structure.It is computed with a single traversal through the directory where the test artifacts
are held.
Each test file contains a single test execution in a single platform-k8s-postgres.
Each is ingested by a function that then updates the
test_summary
as a side effect.This is how the
test_summary
looks overall.internally, the
by_XYZ
dictionaries contain, within them, something likeAnd inside of each of these dictionaries, the element in question will be the key.
E.g. the test name, in the dictionary above, after a few iterations, we could have something like
The above structure gets difficult to reason about.
It would be a lot more understandable to use the following representation.
The text was updated successfully, but these errors were encountered: