Closed gsisinna closed 2 years ago
As per the title, this PR contains a fix for correct plot generation following test execution.
The parameter we should check inside the .ini file is plot_enabled, and not the plot variable.
.ini
plot_enabled
The idea is to follow this logic:
if plot_enabled is not in the conf at all => plot = false
plot = false
if plot_enabled is in the conf => plot = value of plot enabled
plot = value of plot enabled
We tested with the setup and it follows the expected behavior.
cc @vvasco @valegagge
Merged, thanks!
As per the title, this PR contains a fix for correct plot generation following test execution.
The parameter we should check inside the
.ini
file isplot_enabled
, and not the plot variable.The idea is to follow this logic:
if
plot_enabled
is not in the conf at all =>plot = false
if
plot_enabled
is in the conf =>plot = value of plot enabled
We tested with the setup and it follows the expected behavior.
cc @vvasco @valegagge