fixed tests; had to remove one from utils

This commit is contained in:
Abubakar Abid 2021-12-21 13:40:22 -06:00
parent d03c3a4bfe
commit 118315fe4b
2 changed files with 8 additions and 18 deletions

View File

@ -10,6 +10,7 @@ import threading
from comet_ml import Experiment
import mlflow
import wandb
import socket
os.environ["GRADIO_ANALYTICS_ENABLED"] = "False"
@ -27,12 +28,13 @@ class TestInterface(unittest.TestCase):
def test_close(self):
io = Interface(lambda input: None, "textbox", "label")
io.launch(prevent_thread_lock=True)
port1 = io.server_port
server_port = io.server_port
io.close()
io = Interface(lambda input: None, "textbox", "label")
io.launch(prevent_thread_lock=True)
port2 = io.server_port
self.assertEquals(port1, port2)
time.sleep(1)
# check if port is free (if not, raises OSError)
s = socket.socket() # create a socket object
s.bind((networking.LOCALHOST_NAME, server_port))
s.close()
def test_close_all(self):
interface = Interface(lambda input: None, "textbox", "label")

View File

@ -101,20 +101,8 @@ class TestUtils(unittest.TestCase):
readme_to_html("placeholder")
def test_readme_to_html_correct_parse(self):
readme_to_html("https://github.com/gradio-app/gradio/blob/master/README.md")
readme_to_html("https://github.com/gradio-app/gradio/blob/master/README.md")
def test_launch_counter(self):
with tempfile.NamedTemporaryFile() as tmp:
with mock.patch('gradio.utils.JSON_PATH', tmp.name):
interface = gradio.Interface(lambda x: x, "textbox", "label")
os.remove(tmp.name)
interface.launch(prevent_thread_lock=True)
with open(tmp.name) as j:
self.assertEqual(json.load(j)['launches'], 1)
interface.launch(prevent_thread_lock=True)
with open(tmp.name) as j:
self.assertEqual(json.load(j)['launches'], 2)
if __name__ == '__main__':
unittest.main()