diff options
author | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2022-11-19 11:15:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-19 11:15:10 +0000 |
commit | 14dfede8ddbf6b82bb290d5c4292d52b6b68e3ca (patch) | |
tree | cd563ef136e082e7009a66f9229805539f7b97c6 /test/basic_features/utils_test.py | |
parent | 694611cbd8151533cf18e01a8ead32771ea12ff3 (diff) | |
download | stable-diffusion-webui-gfx803-14dfede8ddbf6b82bb290d5c4292d52b6b68e3ca.tar.gz stable-diffusion-webui-gfx803-14dfede8ddbf6b82bb290d5c4292d52b6b68e3ca.tar.bz2 stable-diffusion-webui-gfx803-14dfede8ddbf6b82bb290d5c4292d52b6b68e3ca.zip |
Minor fixes
Remove unused test completely
Change job name
Don't use empty.pt as CLIP weights - it wont work.
Use latest version of actions/cache
Diffstat (limited to 'test/basic_features/utils_test.py')
-rw-r--r-- | test/basic_features/utils_test.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/basic_features/utils_test.py b/test/basic_features/utils_test.py index 9706db8b..765470c9 100644 --- a/test/basic_features/utils_test.py +++ b/test/basic_features/utils_test.py @@ -18,20 +18,6 @@ class UtilsTests(unittest.TestCase): def test_options_get(self): self.assertEqual(requests.get(self.url_options).status_code, 200) - # def test_options_write(self): - # response = requests.get(self.url_options) - # self.assertEqual(response.status_code, 200) - - # pre_value = response.json()["send_seed"] - - # self.assertEqual(requests.post(self.url_options, json={"send_seed":not pre_value}).status_code, 200) - - # response = requests.get(self.url_options) - # self.assertEqual(response.status_code, 200) - # self.assertEqual(response.json()["send_seed"], not pre_value) - - # requests.post(self.url_options, json={"send_seed": pre_value}) - def test_cmd_flags(self): self.assertEqual(requests.get(self.url_cmd_flags).status_code, 200) |