Commit 28af8df8 authored by Nicolas Wavrant's avatar Nicolas Wavrant

resiliencytestsuite: use the testnode slapos and not the system one

parent 9c6ab730
......@@ -182,7 +182,7 @@ class ResiliencyTestSuite(object):
slapos_configuration_file_path = os.path.abspath(slapos_configuration_file_path)
# Output is huge and we don't want to store it in memory nor print it
devnull = open('/dev/null', 'w')
command = ['/opt/slapos/bin/slapos', 'node', 'instance',
command = [os.path.join(os.environ['HOME'], 'software_release', 'bin', 'slapos'), 'node', 'instance',
'--cfg=%s' % slapos_configuration_file_path,
'--pidfile=slapos.pid']
self.logger.info('Running "slapos node instance" with command : %s' % ' '.join(command))
......
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