I'm running jenkins job and trying to set my environment from python 2 to 3. It's going pretty well now and my tests run well under python3 from jenkins. But when I try to run the same test under python2 the job stucks at stopping PabotLib.
However it runs perfectly from commandline. Any ideas?
That issue usually happens if/when you start processes and/or open files during your test run and those processes/files are not stopped/closed.