Default artifacts dir is cwd

This commit is contained in:
Andrey Pohilko 2012-09-21 15:30:56 +04:00
parent 0c0f547fe3
commit 8334b80426
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ class TankCore:
self.log.info("Loading plugins...")
self.log.debug("sys.path: %s", sys.path)
self.artifacts_base_dir = os.path.expanduser(self.get_option(self.SECTION, "artifacts_base_dir", tempfile.gettempdir()))
self.artifacts_base_dir = os.path.expanduser(self.get_option(self.SECTION, "artifacts_base_dir", os.getcwd()))
self.artifacts_dir = self.get_option(self.SECTION, "artifacts_dir", "")
if self.artifacts_dir:
self.artifacts_dir = os.path.expanduser(self.artifacts_dir)

View File

@ -105,7 +105,7 @@ class ConsoleOnlinePlugin(AbstractPlugin, AggregateResultListener):
self.log.info(tpl % data)
else:
self.screen.add_second_data(second_aggregate_data)
self.is_test_finished()
#self.is_test_finished()
def add_info_widget(self, widget):