Removed some commented out text and blank lines.

This commit is contained in:
Timofey 2015-12-01 19:23:41 +03:00
parent c0994f722d
commit 645862d173

View file

@ -131,17 +131,12 @@ class TestRunner:
def test_file_with_keys(self, test_file):
# omim-build-debug/out/debug/opening_hours_tests --report_format=xml --report_level=detailed --log_level=test_suite --log_format=xml 1> boostlog.xml 2> boosterr.xml
if self.boost_tests:
return "{test_file} --report_format=xml --report_level=detailed --log_level=test_suite --log_format=xml {data}{resources}".format(test_file=test_file, data=self.data_path, resources=self.user_resource_path)
return "{test_file}{data}{resources}".format(test_file=test_file, data=self.data_path, resources=self.user_resource_path)
pass
def run_tests(self, tests_to_run):
failed = list()
passed = list()
@ -150,8 +145,6 @@ class TestRunner:
self.log_exec_file(test_file)
test_file_with_keys = self.test_file_with_keys(test_file)
logging.info(test_file_with_keys)