mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Fixed error when DEVELOPMENT env var is not set
This commit is contained in:
parent
23842a932e
commit
c3a9b21010
@ -41,7 +41,8 @@ class PandoraWebDriverTestCase(TestCase):
|
||||
def setUp(self):
|
||||
self.time_started = datetime.now()
|
||||
#Start VM in Sauce Labs
|
||||
if environ["DEVELOPMENT"] == "1":
|
||||
is_development = os.getenv('DEVELOPMENT', False)
|
||||
if is_development != False:
|
||||
self.driver = webdriver.Firefox()
|
||||
else:
|
||||
self.driver = webdriver.Remote(command_executor='http://'+self.sauce_username+':'+self.sauce_access_key+'@ondemand.saucelabs.com:80/wd/hub',desired_capabilities=self.desired_cap)
|
||||
|
Loading…
x
Reference in New Issue
Block a user