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 /.github | |
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 '.github')
-rw-r--r-- | .github/workflows/run_tests.yaml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/run_tests.yaml b/.github/workflows/run_tests.yaml index 6c6f15a8..49dc92bd 100644 --- a/.github/workflows/run_tests.yaml +++ b/.github/workflows/run_tests.yaml @@ -1,4 +1,4 @@ -name: Run tests on CPU with empty model +name: Run basic features tests on CPU with empty SD model on: - push @@ -14,14 +14,13 @@ jobs: uses: actions/setup-python@v4 with: python-version: 3.10.6 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- + restore-keys: ${{ runner.os }}-pip- - 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 uses: actions/upload-artifact@v3 if: always() |