Implement Selenium Grid to run multiple tests across different browsers, operating systems, and machines in parallel. Fixes #5255

This commit is contained in:
Yogesh Mahajan
2020-05-11 12:11:31 +05:30
committed by Akshay Joshi
parent b64896f558
commit 1294c089a8
29 changed files with 1452 additions and 376 deletions

View File

@@ -562,6 +562,10 @@ try:
except ImportError:
pass
# Override DEFAULT_SERVE value from environment variable.
if 'PGADMIN_CONFIG_DEFAULT_SERVER' in os.environ:
DEFAULT_SERVER = os.environ['PGADMIN_CONFIG_DEFAULT_SERVER']
# Disable USER_INACTIVITY_TIMEOUT when SERVER_MODE=False
if not SERVER_MODE:
USER_INACTIVITY_TIMEOUT = 0