Ok, so what i am trying to do is i have a bunch of python programs that are just tests (using the unittest library). I would like to create a python program that runs each python program back to back and gives me kind of a report at the end (would be the best situation) or just stops running if one fails.
The hard part about this is each program requires a user input (a simple Y for yes). How can I run each python program (i have run across the executefile("script.py") command but have not tested it out), then insert the input from the user (a simple Y), and either have it stop when a test fails (easier) or preferably be able to tell which ones fail and print the results of what failed and what passed after they all run.
I am still learning python (self-taught) so sorry!