1# 'sleep 60' in Python because Windows does not have a native sleep command. 2# 3# RUN: %{python} %s 4 5import time 6 7time.sleep(60) 8