Can a Global variable be set in one suite's test and then unset in another suite's test?
I have a set of RF smoke tests for regression testing of my RF implementation, including custom libs in both RF and python.
A subset of suites is testing custom library import in various scopes. So for the first time I have a need to set a new Global in a test case so the value can be seen in the next suite that is run.
These suites have names to ensure they are run in order (e.g. 1__test.robot, 2__verify.robot) and I want to set in 1__, read it in 2__, then unset it in 2__ to prevent unneeded contamination of the run environment.
I understand this is minor issue. I have searched this user groups past posting and reviewed RF users and BuiltIn docs and cannot find if this is possible.