Replies: 2 comments
-
Hi @marioaag, avocado doesn't support changes to params during the runtime. Also, avocado runs each test in a separated process to isolate the test as much as possible, because of that avocado doesn't support any communication between tests. I am not really sure what your use-case is, but if you are using process spawner, you could use environment variables, for sharing information between tests. You can use avocado variables or you can create your own in setup phase. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for the confirmation! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to know if there is any suggested way to create or modify params on the fly when multiple runnables are running in parallel.
The goal of this is share information between multiple runnables at run time.
Beta Was this translation helpful? Give feedback.
All reactions