diff options
author | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2022-11-14 15:40:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 15:40:15 +0000 |
commit | 9e4f68acad4697fdf10004eb85d3f6f769c2c70b (patch) | |
tree | 079eee1ca446de76e3608e393595eecade7fe34e /.github/workflows | |
parent | 5808241dd76983212ab8e27b07f72866671f0b2d (diff) | |
download | stable-diffusion-webui-gfx803-9e4f68acad4697fdf10004eb85d3f6f769c2c70b.tar.gz stable-diffusion-webui-gfx803-9e4f68acad4697fdf10004eb85d3f6f769c2c70b.tar.bz2 stable-diffusion-webui-gfx803-9e4f68acad4697fdf10004eb85d3f6f769c2c70b.zip |
Stop exporting cl args and upload stdout and stderr as artifacts
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/run_tests.yaml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/run_tests.yaml b/.github/workflows/run_tests.yaml index 223a31b9..558b0c61 100644 --- a/.github/workflows/run_tests.yaml +++ b/.github/workflows/run_tests.yaml @@ -22,5 +22,12 @@ jobs: ${{ runner.os }}-pip- - name: Run tests run: | - export COMMANDLINE_ARGS="--tests basic_features --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test --port 80" - python launch.py + 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() + with: + name: stdout-stderr + path: | + ./test/stdout.txt + ./test/stderr.txt |