File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 37
37
import getopt
38
38
39
39
UNITTEST_RUNNER = "coverage run -m unittest discover -vfs "
40
- BEHAVE_RUNNER = "behave --tags=-db --tags=-tls --tags=-fixed_session_pool test/tck"
40
+ BEHAVE_RUNNER = "behave --format=progress -- tags=-db --tags=-tls --tags=-fixed_session_pool test/tck"
41
41
42
42
NEORUN_PATH = path .abspath ('./neokit/neorun.py' )
43
43
NEO4J_HOME = path .abspath ('./build/neo4jhome' )
@@ -59,6 +59,7 @@ def runcommand(command):
59
59
60
60
def runcommands (commands ):
61
61
if is_windows :
62
+ commands = ["\" " + comm + "\" " if " " in comm else comm for comm in commands ]
62
63
commands = ['powershell.exe' ] + commands
63
64
return run0 (commands )
64
65
@@ -120,9 +121,9 @@ def main():
120
121
retcode = retcode or runpymodule (UNITTEST_RUNNER + "examples" )
121
122
elif opt == "--tck" :
122
123
retcode = runpymodule ('coverage report --show-missing' ) or \
123
- runcommands (["python" , "-c" , "\" from test.tck.configure_feature_files import *; set_up()\" " ]) or \
124
+ runcommands (["python" , "-c" , "from test.tck.configure_feature_files import *; set_up()" ]) or \
124
125
runpymodule (BEHAVE_RUNNER ) or \
125
- runcommands (["python" , "-c" , "\" from test.tck.configure_feature_files import *; clean_up()\" " ])
126
+ runcommands (["python" , "-c" , "from test.tck.configure_feature_files import *; clean_up()" ])
126
127
127
128
if retcode != 0 :
128
129
break
You can’t perform that action at this time.
0 commit comments