diff options
author | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2022-11-14 10:39:22 +0000 |
---|---|---|
committer | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2022-11-14 10:39:22 +0000 |
commit | 93d6c0209ae55632b72751cf82740e32a0cd81bc (patch) | |
tree | 5624ebfb70e823b0a1be1f496ecdba75fb02c92a /test/extras_test.py | |
parent | 007f4f7314eabd9cc3a2b0d11889de49ad3c682a (diff) | |
download | stable-diffusion-webui-gfx803-93d6c0209ae55632b72751cf82740e32a0cd81bc.tar.gz stable-diffusion-webui-gfx803-93d6c0209ae55632b72751cf82740e32a0cd81bc.tar.bz2 stable-diffusion-webui-gfx803-93d6c0209ae55632b72751cf82740e32a0cd81bc.zip |
Tests separated for github-actions CI
Diffstat (limited to 'test/extras_test.py')
-rw-r--r-- | test/extras_test.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/test/extras_test.py b/test/extras_test.py deleted file mode 100644 index 9b8ce0f0..00000000 --- a/test/extras_test.py +++ /dev/null @@ -1,29 +0,0 @@ -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() |