Commit 638d16ef authored by Benjamin Blanc's avatar Benjamin Blanc

scalability:runScalabilityTestSuite: Fix path

parent d8bc33ad
......@@ -140,8 +140,10 @@ class ScalabilityLauncher(object):
"%s*.csv" %LOG_FILE_PREFIX)
def cleanUplogAndCsv(self):
files_to_delete = glob.glob(os.path.join(path, "%s*.log" %LOG_FILE_PREFIX))\
+ glob.glob(os.path.join(path, "%s*.csv" %LOG_FILE_PREFIX))
files_to_delete = glob.glob(os.path.join(self.__argumentNamespace.log_path,
"%s*.log" %LOG_FILE_PREFIX))\
+ glob.glob(os.path.join(self.__argumentNamespace.log_path,
"%s*.csv" %LOG_FILE_PREFIX))
for file_path in files_to_delete:
os.remove(file_path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment