Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AUTOMATIC1111/stable-diffusion-webui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 52cd19bf704c8521a3192cba8580a8be078d47a2
Choose a base ref
..
head repository: AUTOMATIC1111/stable-diffusion-webui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b0ed4ba92a03d777d017edca35f1f75432655269
Choose a head ref
Showing with 11 additions and 2 deletions.
  1. +11 −2 .github/workflows/run_tests.yaml
13 changes: 11 additions & 2 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
@@ -46,12 +46,21 @@ jobs:
python -m pytest -vv --junitxml=test/results.xml --cov . --cov-report=xml --verify-base-url test
- name: Kill test server
if: always()
run: pkill -f launch.py
run: pkill -INT -f launch.py
- name: Show coverage
run: python -m coverage report
run: |
python -m coverage combine
python -m coverage report
python -m coverage html
- 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