aboutsummaryrefslogtreecommitdiff
path: root/test/server_poll.py
blob: eeefb7ebc320d60e868e716f5ba3c0d13f05a54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import unittest
import requests
import time


def run_tests():
    timeout_threshold = 240
    start_time = time.time()
    while time.time()-start_time < timeout_threshold:
        try:
            requests.head("http://localhost:7860/")
            break
        except requests.exceptions.ConnectionError:
            pass
    if time.time()-start_time < timeout_threshold:
        suite = unittest.TestLoader().discover('', pattern='*_test.py')
        result = unittest.TextTestRunner(verbosity=2).run(suite)
    else:
        print("Launch unsuccessful")