For referenceimport subprocess for i in ['1', '2']: command = ['python', 'hyp_op.py', '--testnum', f'{i}'] process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
Hi RobustRat47 , what if you run them as sub-processes?
Yep just about to do that. Just annoying to add arg parser etc