Skip to content

Commit 4dedfb3

Browse files
authored
Fixing GangaTest Runtime env modification (#658)
1 parent fc4d442 commit 4dedfb3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

python/Ganga/Runtime/bootstrap.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,9 @@ def deny_modification(name, x):
791791
if self.options.TEST:
792792
# FIXME: CONFIG CHECK
793793
# ?? config['RUNTIME_PATH'] = ''
794-
getConfig('Configuration').setSessionValue('RUNTIME_PATH', 'GangaTest')
794+
config = getConfig('Configuration')
795+
exiting = config['RUNTIME_PATH']
796+
config.setSessionValue('RUNTIME_PATH', exiting + ':GangaTest')
795797

796798
# ensure we're not interactive if daemonised
797799
if self.options.daemon and self.interactive:

0 commit comments

Comments
 (0)