mirror of
https://github.com/valitydev/yandex-tank.git
synced 2024-11-06 18:35:18 +00:00
Default artifacts dir is cwd
This commit is contained in:
parent
0c0f547fe3
commit
8334b80426
@ -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)
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user