stages: remove org.osbuild.test.timeout

Was only used in `test_buildroot` and got replaced with a direct
call to `sleep`.
This commit is contained in:
Christian Kellner 2021-12-06 16:03:54 +00:00 committed by mergify[bot]
parent 3958a6140c
commit bd5b60a857

View file

@ -1,20 +0,0 @@
#!/usr/bin/python3
"""
Test stage that is used for timeout tests
"""
import time
import sys
def main():
print('Test stage output.')
while True:
time.sleep(2)
return 0
if __name__ == '__main__':
r = main()
sys.exit(r)