I am trying to have my prints be live to stdout but they only print after the test is completed. I am using pycharm and a lot of the solutions I have found are for using the command line. For example if I run this code below it doesnt output the hello's until the test has passed. output from test
def test():
    for x in range(6):
        print('hello')
 
    