Replies: 1 comment 7 replies
-
Looking in the code found that the logic to retrieve run.test_parameters is missing in avocado_instrumeted.py in the method _create_params Something link this:
I did an experiment adding this code and it works Is the approach changing? asking this due this code is in 92.0 and now it is not. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an implementation in Avocado 92.0 where I passed the test parameter using run.test_parameters using the config option at the Runnable generation level and it works as expected but moving to Avocado 96.0 the test parameter get lost and I'm not able to retrieve the values at the test level (avocado instrumented) with self.params.get()
Is there a new parameter that should be used to specify the specific parameters corresponding to each one of the Runnable generated?
Example of the code used:
Example of the Runnable generated:
Did it a try with kwargs and the params still getting lost:
Beta Was this translation helpful? Give feedback.
All reactions