Skip to content

Commit 438dbcc

Browse files
author
Zhen
committed
Fix the tck missing
Simplified tck output Use `behave --format=help` to find more info about tck output format
1 parent eb9441f commit 438dbcc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

runtests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import getopt
3838

3939
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"
4141

4242
NEORUN_PATH = path.abspath('./neokit/neorun.py')
4343
NEO4J_HOME = path.abspath('./build/neo4jhome')
@@ -120,9 +120,9 @@ def main():
120120
retcode = retcode or runpymodule(UNITTEST_RUNNER + "examples")
121121
elif opt == "--tck":
122122
retcode = runpymodule('coverage report --show-missing') or \
123-
runcommands(["python", "-c", "\"from test.tck.configure_feature_files import *; set_up()\""]) or \
123+
runcommands(["python", "-c", "from test.tck.configure_feature_files import *; set_up()"]) or \
124124
runpymodule(BEHAVE_RUNNER) or \
125-
runcommands(["python", "-c", "\"from test.tck.configure_feature_files import *; clean_up()\""])
125+
runcommands(["python", "-c", "from test.tck.configure_feature_files import *; clean_up()"])
126126

127127
if retcode != 0:
128128
break

0 commit comments

Comments
 (0)