mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
30 lines
786 B
Python
30 lines
786 B
Python
import unittest
|
|
|
|
|
|
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()
|