stable-diffusion-webui/.github/workflows/run_tests.yaml

35 lines
974 B
YAML
Raw Normal View History

name: Run basic features tests on CPU with empty SD model
2022-11-14 10:39:22 +00:00
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
2022-11-14 10:39:22 +00:00
with:
python-version: 3.10.6
2023-01-07 09:34:02 +00:00
cache: pip
cache-dependency-path: |
**/requirements*txt
2022-11-14 10:39:22 +00:00
- name: Run tests
run: python launch.py --tests test --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test
2023-05-11 07:36:10 +00:00
env:
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PIP_PROGRESS_BAR: "off"
TORCH_INDEX_URL: https://download.pytorch.org/whl/cpu
WEBUI_LAUNCH_LIVE_OUTPUT: "1"
- name: Upload main app stdout-stderr
uses: actions/upload-artifact@v3
if: always()
with:
name: stdout-stderr
path: |
test/stdout.txt
test/stderr.txt