diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-30 05:22:44 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-30 05:22:44 +0000 |
commit | 59dfe0845d964868e92572c78a420b6d68c46ea4 (patch) | |
tree | c43ada96969bdcdb926da9a4009f827c40dfc612 /test/extras_test.py | |
parent | 05a657dd357eaca6940c4775daa946bd33f1167d (diff) | |
download | stable-diffusion-webui-gfx803-59dfe0845d964868e92572c78a420b6d68c46ea4.tar.gz stable-diffusion-webui-gfx803-59dfe0845d964868e92572c78a420b6d68c46ea4.tar.bz2 stable-diffusion-webui-gfx803-59dfe0845d964868e92572c78a420b6d68c46ea4.zip |
launch tests from launch.py with --tests commandline argument
Diffstat (limited to 'test/extras_test.py')
-rw-r--r-- | test/extras_test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/extras_test.py b/test/extras_test.py index 2e1764d9..9b8ce0f0 100644 --- a/test/extras_test.py +++ b/test/extras_test.py @@ -1,7 +1,5 @@ import unittest -import requests -from gradio.processing_utils import encode_pil_to_base64 -from PIL import Image + class TestExtrasWorking(unittest.TestCase): def setUp(self): @@ -22,8 +20,10 @@ class TestExtrasWorking(unittest.TestCase): "image": "" } + class TestExtrasCorrectness(unittest.TestCase): pass + if __name__ == "__main__": unittest.main() |