Merge pull request #17111 from edx/arch/delete-old-settings-files
Delete unneeded settings for analytics_exporter and sauce
This commit is contained in:
@@ -8,7 +8,6 @@ so that we can run the lettuce acceptance tests.
|
||||
# pylint: disable=wildcard-import, unused-wildcard-import
|
||||
|
||||
from .test import *
|
||||
from lms.envs.sauce import *
|
||||
|
||||
# You need to start the server in debug mode,
|
||||
# otherwise the browser will not render the pages correctly
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
"""
|
||||
This is the settings file used during execution of the analytics-exporter job.
|
||||
"""
|
||||
from .aws import *
|
||||
|
||||
ENABLE_COMPREHENSIVE_THEMING = False
|
||||
@@ -8,7 +8,6 @@ so that we can run the lettuce acceptance tests.
|
||||
# pylint: disable=wildcard-import, unused-wildcard-import
|
||||
|
||||
from .test import *
|
||||
from .sauce import *
|
||||
|
||||
# You need to start the server in debug mode,
|
||||
# otherwise the browser will not render the pages correctly
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
"""
|
||||
This is the settings file used during execution of the analytics-exporter job.
|
||||
"""
|
||||
from .aws import *
|
||||
|
||||
ENABLE_COMPREHENSIVE_THEMING = False
|
||||
@@ -1,60 +0,0 @@
|
||||
"""
|
||||
This config file extends the test environment configuration
|
||||
so that we can run the lettuce acceptance tests on SauceLabs.
|
||||
"""
|
||||
|
||||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
||||
import os
|
||||
|
||||
PORTS = [
|
||||
2000, 2001, 2020, 2109, 2222, 2310, 3000, 3001,
|
||||
3030, 3210, 3333, 4000, 4001, 4040, 4321, 4502, 4503,
|
||||
5050, 5555, 5432, 6060, 6666, 6543, 7000, 7070, 7774,
|
||||
7777, 8003, 8031, 8080, 8081, 8765, 8888,
|
||||
9080, 9090, 9876, 9999, 49221, 55001
|
||||
]
|
||||
|
||||
DESIRED_CAPABILITIES = {
|
||||
'chrome': DesiredCapabilities.CHROME,
|
||||
'internetexplorer': DesiredCapabilities.INTERNETEXPLORER,
|
||||
'firefox': DesiredCapabilities.FIREFOX,
|
||||
'opera': DesiredCapabilities.OPERA,
|
||||
'iphone': DesiredCapabilities.IPHONE,
|
||||
'ipad': DesiredCapabilities.IPAD,
|
||||
'safari': DesiredCapabilities.SAFARI,
|
||||
'android': DesiredCapabilities.ANDROID
|
||||
}
|
||||
|
||||
# All keys must be URL and JSON encodable
|
||||
# PLATFORM-BROWSER-VERSION_NUM-DEVICE
|
||||
ALL_CONFIG = {
|
||||
'Linux-chrome--': ['Linux', 'chrome', '', ''],
|
||||
'Windows 8-chrome--': ['Windows 8', 'chrome', '', ''],
|
||||
'Windows 7-chrome--': ['Windows 7', 'chrome', '', ''],
|
||||
'Windows XP-chrome--': ['Windows XP', 'chrome', '', ''],
|
||||
'OS X 10.8-chrome--': ['OS X 10.8', 'chrome', '', ''],
|
||||
'OS X 10.6-chrome--': ['OS X 10.6', 'chrome', '', ''],
|
||||
|
||||
'Linux-firefox-23-': ['Linux', 'firefox', '23', ''],
|
||||
'Windows 8-firefox-23-': ['Windows 8', 'firefox', '23', ''],
|
||||
'Windows 7-firefox-23-': ['Windows 7', 'firefox', '23', ''],
|
||||
'Windows XP-firefox-23-': ['Windows XP', 'firefox', '23', ''],
|
||||
|
||||
'OS X 10.8-safari-6-': ['OS X 10.8', 'safari', '6', ''],
|
||||
|
||||
'Windows 8-internetexplorer-10-': ['Windows 8', 'internetexplorer', '10', ''],
|
||||
}
|
||||
|
||||
SAUCE_INFO = ALL_CONFIG.get(os.environ.get('SAUCE_INFO', 'Linux-chrome--'))
|
||||
|
||||
# Information needed to utilize Sauce Labs.
|
||||
SAUCE = {
|
||||
'USERNAME': os.environ.get('SAUCE_USER_NAME'),
|
||||
'ACCESS_ID': os.environ.get('SAUCE_API_KEY'),
|
||||
'PLATFORM': SAUCE_INFO[0],
|
||||
'BROWSER': DESIRED_CAPABILITIES.get(SAUCE_INFO[1]),
|
||||
'VERSION': SAUCE_INFO[2],
|
||||
'DEVICE': SAUCE_INFO[3],
|
||||
'SESSION': 'Jenkins Acceptance Tests',
|
||||
'BUILD': os.environ.get('BUILD_DISPLAY_NAME', 'LETTUCE TESTS'),
|
||||
}
|
||||
Reference in New Issue
Block a user