Dynamic Variant Analysis for Flaky Test Detection
Last post was about finding flaky test by using static analysis. This time I’ll be doing the same thing but dynamically using the technique described on my first post
Software Engineer
Last post was about finding flaky test by using static analysis. This time I’ll be doing the same thing but dynamically using the technique described on my first post
Last post was about dynamic variant analysis with Python, this time I’ll be performing static variant analysis on Python code by using the ast module in order to find flaky tests.
In this post I will present a way to find performance issues withing Python code with the help of pytest by doing variant analysis.