Canary tests usage and results analyzing #4444
-
Hey guys ! I try to understand what canary tests are and how do they work. As far as I understood from code and code comments (I'm not fmiliar with Go), there is a test suite which
What I don't undesrtand is this:
Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi I am improving it here: https://github.com/uber/cadence/pull/4447/files I also pushed the code of the PR into an image if you want to try out earlier: Highlights of the changes:
For your questsions:
SanityWorklfow is a special case. It's the whole suite of all other test cases
If workflow completed, then it succeeds, if failed then it failed.
The metrics shows that ONLY the archival test case is failing. very likely this feature is not enabled yet in your cluster. |
Beta Was this translation helpful? Give feedback.
Hi I am improving it here: https://github.com/uber/cadence/pull/4447/files
I also pushed the code of the PR into an image if you want to try out earlier:
ubercadence/cadence-canary:latest
Highlights of the changes:
For your questsions:
SanityWorklfow is a special case. It's the whole suite of all other test cases
If workflow completed, t…