examples tests pass

This commit is contained in:
Abubakar Abid 2022-03-25 11:14:28 -07:00
parent 6eeaccc11e
commit 22f332b1ce

View File

@ -6,24 +6,24 @@ from gradio import Interface, process_examples
os.environ["GRADIO_ANALYTICS_ENABLED"] = "False"
# class TestProcessExamples(unittest.TestCase):
# def test_process_example(self):
# io = Interface(lambda x: "Hello " + x, "text", "text", examples=[["World"]])
# prediction, _ = process_examples.process_example(io, 0)
# self.assertEquals(prediction[0], "Hello World")
class TestProcessExamples(unittest.TestCase):
def test_process_example(self):
io = Interface(lambda x: "Hello " + x, "text", "text", examples=[["World"]])
prediction, _ = process_examples.process_example(io, 0)
self.assertEquals(prediction[0], "Hello World")
# def test_caching(self):
# io = Interface(
# lambda x: "Hello " + x,
# "text",
# "text",
# examples=[["World"], ["Dunya"], ["Monde"]],
# )
# io.launch(prevent_thread_lock=True)
# process_examples.cache_interface_examples(io)
# prediction = process_examples.load_from_cache(io, 1)
# io.close()
# self.assertEquals(prediction[0], "Hello Dunya")
def test_caching(self):
io = Interface(
lambda x: "Hello " + x,
"text",
"text",
examples=[["World"], ["Dunya"], ["Monde"]],
)
io.launch(prevent_thread_lock=True)
process_examples.cache_interface_examples(io)
prediction = process_examples.load_from_cache(io, 1)
io.close()
self.assertEquals(prediction[0], "Hello Dunya")
if __name__ == "__main__":