File tree 1 file changed +1
-9
lines changed
1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 2
2
""" keep the config for one testsuite to execute """
3
3
import copy
4
4
import os
5
- import json
6
5
7
6
from site_config import IS_WINDOWS , IS_MAC , TEMP
8
7
TEST_LOG_FILES = []
@@ -63,14 +62,7 @@ def __init__(self,
63
62
self .report_file = self .base_logdir / 'UNITTEST_RESULT.json'
64
63
self .base_testdir = cfg .test_data_dir_x / self .name
65
64
66
- self .arangosh_args = [];
67
- # the yaml work around is to have an A prepended. detect and strip out:
68
- if arangosh_args is not None and len (arangosh_args ) > 0 and arangosh_args != 'A ""' :
69
- print (arangosh_args )
70
- if isinstance (arangosh_args , list ):
71
- self .arangosh_args = arangosh_args
72
- else :
73
- self .arangosh_args = json .loads (arangosh_args [1 :])
65
+ self .arangosh_args = arangosh_args
74
66
self .args = copy .deepcopy (cfg .extra_args )
75
67
for param in args :
76
68
if param .startswith ('$' ):
You can’t perform that action at this time.
0 commit comments