Skip to content
Snippets Groups Projects
Commit e6f703c7 authored by John Chilton's avatar John Chilton
Browse files

Suppress extraneous output for passing tests.

parent f56571ba
No related branches found
No related tags found
No related merge requests found
...@@ -75,7 +75,8 @@ finally: ...@@ -75,7 +75,8 @@ finally:
try: try:
client.download_output(temp_output_path + "x", temp_directory) client.download_output(temp_output_path + "x", temp_directory)
except BaseException as e: except BaseException as e:
traceback.print_exc(e) if not options.suppress_output:
traceback.print_exc(e)
output_file = open(temp_output_path, 'r') output_file = open(temp_output_path, 'r')
try: try:
output_contents = output_file.read() output_contents = output_file.read()
...@@ -87,7 +88,8 @@ finally: ...@@ -87,7 +88,8 @@ finally:
#client.download_work_dir_output("workdir_output") #client.download_work_dir_output("workdir_output")
#assert os.path.exists("workdir_output") #assert os.path.exists("workdir_output")
except BaseException as e: except BaseException as e:
traceback.print_exc(e) if not options.suppress_output:
traceback.print_exc(e)
raise e raise e
finally: finally:
shutil.rmtree(temp_directory) shutil.rmtree(temp_directory)
...@@ -102,6 +104,7 @@ def main(): ...@@ -102,6 +104,7 @@ def main():
parser.add_option('--transport', default=None) # set to curl to use pycurl parser.add_option('--transport', default=None) # set to curl to use pycurl
parser.add_option('--cache', default=False, action="store_true") parser.add_option('--cache', default=False, action="store_true")
parser.add_option('--test_errors', default=False, action="store_true") parser.add_option('--test_errors', default=False, action="store_true")
parser.add_option('--suppress_output', default=False, action="store_true")
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
run(options) run(options)
......
...@@ -22,7 +22,10 @@ class IntegrationTest(TestCase): ...@@ -22,7 +22,10 @@ class IntegrationTest(TestCase):
self.__run(app_conf={"private_key": "testtoken"}, private_token="testtoken", transport="curl", cache=False, test_errors=True) self.__run(app_conf={"private_key": "testtoken"}, private_token="testtoken", transport="curl", cache=False, test_errors=True)
def __run(self, app_conf={}, **kwds): def __run(self, app_conf={}, **kwds):
kwds["suppress_output"] = True
from .test_utils import test_server from .test_utils import test_server
with test_server(app_conf=app_conf) as server: with test_server(app_conf=app_conf) as server:
options = Bunch(url=server.application_url, **kwds) options = Bunch(url=server.application_url, **kwds)
print "Running"
run(options) run(options)
print "DoneRunning"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment