diff options
author | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2022-11-14 15:57:14 +0000 |
---|---|---|
committer | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2022-11-14 15:57:14 +0000 |
commit | 4a35c3744c68be470e6caf72689322ed58f90aac (patch) | |
tree | 89a1f92fbff2959230879ff32b6392b84d5446e7 | |
parent | 9e4f68acad4697fdf10004eb85d3f6f769c2c70b (diff) | |
download | stable-diffusion-webui-gfx803-4a35c3744c68be470e6caf72689322ed58f90aac.tar.gz stable-diffusion-webui-gfx803-4a35c3744c68be470e6caf72689322ed58f90aac.tar.bz2 stable-diffusion-webui-gfx803-4a35c3744c68be470e6caf72689322ed58f90aac.zip |
remove test requiring codeformers
-rw-r--r-- | test/basic_features/txt2img_test.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/basic_features/txt2img_test.py b/test/basic_features/txt2img_test.py index fe4af999..1c2674b2 100644 --- a/test/basic_features/txt2img_test.py +++ b/test/basic_features/txt2img_test.py @@ -49,10 +49,6 @@ class TestTxt2ImgWorking(unittest.TestCase): self.simple_txt2img["enable_hr"] = True self.assertEqual(requests.post(self.url_txt2img, json=self.simple_txt2img).status_code, 200) - def test_txt2img_with_restore_faces_performed(self): - self.simple_txt2img["restore_faces"] = True - self.assertEqual(requests.post(self.url_txt2img, json=self.simple_txt2img).status_code, 200) - def test_txt2img_with_tiling_performed(self): self.simple_txt2img["tiling"] = True self.assertEqual(requests.post(self.url_txt2img, json=self.simple_txt2img).status_code, 200) |