mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-02-22 07:43:58 +00:00
8 lines
190 B
Python
8 lines
190 B
Python
import os
|
|
|
|
|
|
def pytest_configure(config):
|
|
# We don't want to fail on Py.test command line arguments being
|
|
# parsed by webui:
|
|
os.environ.setdefault("IGNORE_CMD_ARGS_ERRORS", "1")
|