71 lines
2.1 KiB
YAML
71 lines
2.1 KiB
YAML
name: Run basic features tests on CPU with empty SD model
|
|
|
|
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
|
|
with:
|
|
python-version: 3.10.6
|
|
cache: pip
|
|
cache-dependency-path: |
|
|
**/requirements*txt
|
|
launch.py
|
|
- 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
|
|
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"
|
|
PYTHONUNBUFFERED: "1"
|
|
- name: Start test server
|
|
run: >
|
|
python -m coverage run
|
|
--data-file=.coverage.server
|
|
launch.py
|
|
--skip-prepare-environment
|
|
--skip-torch-cuda-test
|
|
--test-server
|
|
--no-half
|
|
--disable-opt-split-attention
|
|
--use-cpu all
|
|
--add-stop-route
|
|
2>&1 | tee output.txt &
|
|
- name: Run tests
|
|
run: |
|
|
wait-for-it --service 127.0.0.1:7860 -t 600
|
|
python -m pytest -vv --junitxml=test/results.xml --cov . --cov-report=xml --verify-base-url test
|
|
- name: Kill test server
|
|
if: always()
|
|
run: curl -vv -XPOST http://127.0.0.1:7860/_stop && sleep 10
|
|
- name: Show coverage
|
|
run: |
|
|
python -m coverage combine .coverage*
|
|
python -m coverage report -i
|
|
python -m coverage html -i
|
|
- name: Upload main app output
|
|
uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: output
|
|
path: output.txt
|
|
- name: Upload coverage HTML
|
|
uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: htmlcov
|
|
path: htmlcov
|