Skip to content

Commit e5f235e

Browse files
committed
Fixed tags
1 parent 85d65fd commit e5f235e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ echo ""
7979

8080
TEST_RUNNER="coverage run -m ${UNITTEST} discover -vfs ${TEST}"
8181
EXAMPLES_RUNNER="coverage run -m ${UNITTEST} discover -vfs examples"
82-
BEHAVE_RUNNER="behave --tags=-db --tags=-in_dev test/tck"
82+
BEHAVE_RUNNER="behave --tags=-db --tags=-in_dev --tags=-streaming_and_cursor_navigation test/tck"
8383

8484
if [ ${RUNNING} -eq 1 ]
8585
then

test/tck/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def before_scenario(context, scenario):
3535
session = tck_util.driver.session()
3636
session.run("MATCH (n) DETACH DELETE n")
3737
session.close()
38-
if "equality_test" in scenario.tags:
38+
if "equality" in scenario.tags:
3939
context.values = {}
4040

4141

0 commit comments

Comments
 (0)