diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-30 04:41:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 04:41:39 +0000 |
commit | ded08fc1dc515eaeaea3197280d5260ba276c366 (patch) | |
tree | 84c21f144f1fc2886109f15edf19d8ee89159dff /test/extras_test.py | |
parent | 94840301f86ea204d02e5a0235a15804b495fe8a (diff) | |
parent | ffc5b700c417924a77797fc5e02c219f10d801be (diff) | |
download | stable-diffusion-webui-gfx803-ded08fc1dc515eaeaea3197280d5260ba276c366.tar.gz stable-diffusion-webui-gfx803-ded08fc1dc515eaeaea3197280d5260ba276c366.tar.bz2 stable-diffusion-webui-gfx803-ded08fc1dc515eaeaea3197280d5260ba276c366.zip |
Merge pull request #3941 from mezotaken/master
Automated testing through API [WIP, feedback required]
Diffstat (limited to 'test/extras_test.py')
-rw-r--r-- | test/extras_test.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/extras_test.py b/test/extras_test.py new file mode 100644 index 00000000..2e1764d9 --- /dev/null +++ b/test/extras_test.py @@ -0,0 +1,29 @@ +import unittest +import requests +from gradio.processing_utils import encode_pil_to_base64 +from PIL import Image + +class TestExtrasWorking(unittest.TestCase): + def setUp(self): + self.url_img2img = "http://localhost:7860/sdapi/v1/extra-single-image" + self.simple_extras = { + "resize_mode": 0, + "show_extras_results": True, + "gfpgan_visibility": 0, + "codeformer_visibility": 0, + "codeformer_weight": 0, + "upscaling_resize": 2, + "upscaling_resize_w": 512, + "upscaling_resize_h": 512, + "upscaling_crop": True, + "upscaler_1": "None", + "upscaler_2": "None", + "extras_upscaler_2_visibility": 0, + "image": "" + } + +class TestExtrasCorrectness(unittest.TestCase): + pass + +if __name__ == "__main__": + unittest.main() |