mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
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
This commit is contained in:
parent
694611cbd8
commit
14dfede8dd
9
.github/workflows/run_tests.yaml
vendored
9
.github/workflows/run_tests.yaml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Run tests on CPU with empty model
|
name: Run basic features tests on CPU with empty SD model
|
||||||
|
|
||||||
on:
|
on:
|
||||||
- push
|
- push
|
||||||
@ -14,14 +14,13 @@ jobs:
|
|||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.10.6
|
python-version: 3.10.6
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||||
restore-keys: |
|
restore-keys: ${{ runner.os }}-pip-
|
||||||
${{ runner.os }}-pip-
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: python launch.py --tests basic_features --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test --clip-models-path ./test/test_files/empty.pt
|
run: python launch.py --tests basic_features --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test
|
||||||
- name: Upload main app stdout-stderr
|
- name: Upload main app stdout-stderr
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
if: always()
|
if: always()
|
||||||
|
@ -18,20 +18,6 @@ class UtilsTests(unittest.TestCase):
|
|||||||
def test_options_get(self):
|
def test_options_get(self):
|
||||||
self.assertEqual(requests.get(self.url_options).status_code, 200)
|
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):
|
def test_cmd_flags(self):
|
||||||
self.assertEqual(requests.get(self.url_cmd_flags).status_code, 200)
|
self.assertEqual(requests.get(self.url_cmd_flags).status_code, 200)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user