diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-19 15:59:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 15:59:31 +0000 |
commit | 0d84055eb6a3a22f33b606b8c73bd424116692e5 (patch) | |
tree | bea9851f5f1ae4a5378dd12f7335d7d0a8a0f402 /modules/cmd_args.py | |
parent | 9a86932c8bbac06afc70ea190399e767763d877e (diff) | |
parent | 793a491923ba11adbe1024e0eb0402923165dafa (diff) | |
download | stable-diffusion-webui-gfx803-0d84055eb6a3a22f33b606b8c73bd424116692e5.tar.gz stable-diffusion-webui-gfx803-0d84055eb6a3a22f33b606b8c73bd424116692e5.tar.bz2 stable-diffusion-webui-gfx803-0d84055eb6a3a22f33b606b8c73bd424116692e5.zip |
Merge pull request #10291 from akx/test-overhaul
Test overhaul
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index 7bde161e..8625690b 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -12,8 +12,8 @@ parser.add_argument("--skip-torch-cuda-test", action='store_true', help="launch. parser.add_argument("--reinstall-xformers", action='store_true', help="launch.py argument: install the appropriate version of xformers even if you have some version already installed")
parser.add_argument("--reinstall-torch", action='store_true', help="launch.py argument: install the appropriate version of torch even if you have some version already installed")
parser.add_argument("--update-check", action='store_true', help="launch.py argument: chck for updates at startup")
-parser.add_argument("--tests", type=str, default=None, help="launch.py argument: run tests in the specified directory")
-parser.add_argument("--no-tests", action='store_true', help="launch.py argument: do not run tests even if --tests option is specified")
+parser.add_argument("--test-server", action='store_true', help="launch.py argument: configure server for testing")
+parser.add_argument("--skip-prepare-environment", action='store_true', help="launch.py argument: skip all environment preparation")
parser.add_argument("--skip-install", action='store_true', help="launch.py argument: skip installation of packages")
parser.add_argument("--data-dir", type=str, default=os.path.dirname(os.path.dirname(os.path.realpath(__file__))), help="base path where all user data is stored")
parser.add_argument("--config", type=str, default=sd_default_config, help="path to config which constructs model",)
|