Commit 006201f3 by Will Daly

Set auto auth timeout to 2 minutes

parent d8501f40
...@@ -73,7 +73,12 @@ class OpenAssessmentPage(object): ...@@ -73,7 +73,12 @@ class OpenAssessmentPage(object):
""" """
Log in as a unique user with access to the XBlock(s) under test. Log in as a unique user with access to the XBlock(s) under test.
""" """
resp = self.client.get("auto_auth", params={'course_id': self.problem_fixture.course_id}, verify=False) resp = self.client.get(
"auto_auth",
params={'course_id': self.problem_fixture.course_id},
verify=False,
timeout=120
)
self.logged_in = (resp.status_code == 200) self.logged_in = (resp.status_code == 200)
return self return self
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment