Skip to content

Commit 3203571

Browse files
committed
end-to-end tests won't work in jenkins without full key
1 parent 147d676 commit 3203571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_interceptor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_add_interceptor(self):
5959

6060

6161
""" these will fail because the test keys can't access the service, you'll need to insert a valid key file, password, and consumer key """
62-
def test_without_interceptor(self):
62+
def localonly_test_without_interceptor(self):
6363
if os.path.exists('./test_key_container.p12'):
6464
key_file = './test_key_container.p12'
6565
key_password = "Password1"
@@ -85,7 +85,7 @@ def test_without_interceptor(self):
8585
print(r.text)
8686

8787
""" these will fail because the test keys can't access the service, you'll need to insert a valid key file, password, and consumer key """
88-
def test_with_interceptor(self):
88+
def localonly_test_with_interceptor(self):
8989
if os.path.exists('./test_key_container.p12'):
9090
key_file = './test_key_container.p12'
9191
key_password = "Password1"

0 commit comments

Comments
 (0)