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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.5 KiB
YAML
Raw Normal View History

name: Tests
2022-11-14 10:39:22 +00:00
on:
- push
- pull_request
jobs:
test:
2023-07-14 07:07:08 +00:00
name: tests on CPU with empty model
2022-11-14 10:39:22 +00:00
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
2022-11-14 10:39:22 +00:00
steps:
- name: Checkout Code
2024-03-15 20:57:23 +00:00
uses: actions/checkout@v4
2022-11-14 10:39:22 +00:00
- name: Set up Python 3.10
2024-03-15 20:57:23 +00:00
uses: actions/setup-python@v5
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
2023-05-11 07:51:52 +00:00
launch.py
- name: Cache models
id: cache-models
2024-03-15 20:57:23 +00:00
uses: actions/cache@v4
with:
path: models
key: "2023-12-30"
2023-05-11 18:57:43 +00:00
- name: Install test dependencies
run: pip install wait-for-it -r requirements-test.txt
env:
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PIP_PROGRESS_BAR: "off"
- name: Setup environment
run: python launch.py --skip-torch-cuda-test --exit
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"
2023-05-11 18:57:43 +00:00
PYTHONUNBUFFERED: "1"
- name: Print installed packages
run: pip freeze
2023-05-11 18:57:43 +00:00
- name: Start test server
run: >
python -m coverage run
--data-file=.coverage.server
launch.py
--skip-prepare-environment
--skip-torch-cuda-test
--test-server
--do-not-download-clip
2023-05-11 18:57:43 +00:00
--no-half
--disable-opt-split-attention
--use-cpu all
--api-server-stop
2023-05-11 18:57:43 +00:00
2>&1 | tee output.txt &
- name: Run tests
run: |
wait-for-it --service 127.0.0.1:7860 -t 20
2023-05-11 18:57:43 +00:00
python -m pytest -vv --junitxml=test/results.xml --cov . --cov-report=xml --verify-base-url test
- name: Kill test server
if: always()
2023-06-14 10:53:08 +00:00
run: curl -vv -XPOST http://127.0.0.1:7860/sdapi/v1/server-stop && sleep 10
2023-05-11 18:57:43 +00:00
- name: Show coverage
run: |
python -m coverage combine .coverage*
python -m coverage report -i
python -m coverage html -i
- name: Upload main app output
2024-03-15 20:57:23 +00:00
uses: actions/upload-artifact@v4
2023-05-11 18:57:43 +00:00
if: always()
with:
name: output
path: output.txt
- name: Upload coverage HTML
2024-03-15 20:57:23 +00:00
uses: actions/upload-artifact@v4
if: always()
with:
2023-05-11 18:57:43 +00:00
name: htmlcov
path: htmlcov