File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 66import time
77import json
88import requests
9+ import urllib3
910
1011import xmlrunner
1112
@@ -173,9 +174,9 @@ def run_it(self, cwd):
173174
174175 self ._print_job_logs ()
175176
176- def test_docker_job (self ):
177- self .run_it ('/infrabox/context/infrabox/test/e2e/tests/docker_job' )
178- self .expect_job ('test' )
177+ # def test_docker_job(self):
178+ # self.run_it('/infrabox/context/infrabox/test/e2e/tests/docker_job')
179+ # self.expect_job('test')
179180
180181 def test_docker_multiple_jobs (self ):
181182 self .run_it ('/infrabox/context/infrabox/test/e2e/tests/docker_multiple_jobs' )
@@ -265,6 +266,8 @@ def test_insecure_env(self):
265266def main ():
266267 root_url = os .environ ['INFRABOX_ROOT_URL' ]
267268
269+ urllib3 .disable_warnings ()
270+
268271 print "Connecting to DB"
269272 connect_db () # Wait for DB
270273
@@ -284,7 +287,7 @@ def main():
284287
285288 print "Server not yet ready"
286289
287- time .sleep (600 )
290+ time .sleep (90 )
288291
289292 print "Starting tests"
290293 with open ('results.xml' , 'wb' ) as output :
You can’t perform that action at this time.
0 commit comments