Commit 0d8e7211 authored by Sebastien Robin's avatar Sebastien Robin

Fixed wrong location for the construction os test suite software

parent 8c559261
Changes Changes
======= =======
0.4.24 (2013-02-11)
-------------------
* erp5.util.testnode:
- Fixed wrong location for the construction os test suite software
[Sebastien Robin]
0.4.23 (2013-02-11) 0.4.23 (2013-02-11)
------------------- -------------------
......
...@@ -150,9 +150,9 @@ class TestNode(object): ...@@ -150,9 +150,9 @@ class TestNode(object):
self.process_manager = ProcessManager(log) self.process_manager = ProcessManager(log)
self.node_test_suite_dict = {} self.node_test_suite_dict = {}
# hack until slapos.cookbook is updated # hack until slapos.cookbook is updated
if self.config.get('working_directory', '').endswith("slapos/"): if self.config.get('working_directory', '').endswith("slapos"):
self.config['working_directory'] = self.config[ self.config['working_directory'] = self.config[
'working_directory'][:-(len("slapos/"))] + "testnode" 'working_directory'][:-(len("slapos"))] + "testnode"
self.max_log_time = max_log_time self.max_log_time = max_log_time
def checkOldTestSuite(self,test_suite_data): def checkOldTestSuite(self,test_suite_data):
......
...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages ...@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import glob import glob
import os import os
version = '0.4.23' version = '0.4.24'
name = 'erp5.util' name = 'erp5.util'
long_description = open("README.erp5.util.txt").read() + "\n" long_description = open("README.erp5.util.txt").read() + "\n"
......
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