aboutsummaryrefslogtreecommitdiffstats
path: root/launch.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-01-17 08:04:56 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-01-17 08:05:01 +0000
commitc361b89026442f3412162657f330d500b803e052 (patch)
tree4bba2484cbb13c2f631a0207f75a989d9dc8a961 /launch.py
parent93d3b820d0c8b447d53553e15a149973e9890155 (diff)
downloadstable-diffusion-webui-gfx803-c361b89026442f3412162657f330d500b803e052.tar.gz
stable-diffusion-webui-gfx803-c361b89026442f3412162657f330d500b803e052.tar.bz2
stable-diffusion-webui-gfx803-c361b89026442f3412162657f330d500b803e052.zip
disable the new NaN check for the CI
Diffstat (limited to 'launch.py')
-rw-r--r--launch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/launch.py b/launch.py
index 715427fd..5afb2956 100644
--- a/launch.py
+++ b/launch.py
@@ -286,6 +286,8 @@ def tests(test_dir):
sys.argv.append("./test/test_files/empty.pt")
if "--skip-torch-cuda-test" not in sys.argv:
sys.argv.append("--skip-torch-cuda-test")
+ if "--disable-nan-check" not in sys.argv:
+ sys.argv.append("--disable-nan-check")
print(f"Launching Web UI in another process for testing with arguments: {' '.join(sys.argv[1:])}")