Skip to content

Commit

Permalink
Remove get_jenkins_credential function introduced by mistake (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeyondEvil authored and davehunt committed Apr 27, 2017
1 parent af844db commit 7aedf32
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions pytest_selenium/drivers/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,3 @@ def get_credential(self, key, envs):
if value:
return value
raise MissingCloudCredentialError(self.name, key, envs)

def get_jenkins_credential(self, key):
if 'username' == key:
return os.getenv(self.name.replace(' ', '').upper() + '_USR')
elif 'key' == key:
return os.getenv(self.name.replace(' ', '').upper() + '_PSW')

0 comments on commit 7aedf32

Please sign in to comment.