From 04288ef9afec068e9ed92a112480f3166a1668f4 Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Wed, 24 Sep 2025 21:15:56 -0700 Subject: [PATCH] update neo4j image version and modify test command to disable specific databases --- Makefile | 4 ++-- docker-compose.test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index de6e6f53..c2a9c8d8 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ lint: # Run tests test: - $(PYTEST) + DISABLE_FALKORDB=1 DISABLE_KUZU=1 DISABLE_NEPTUNE=1 $(PYTEST) -m "not integration" # Run format, lint, and test -check: format lint test \ No newline at end of file +check: format lint test diff --git a/docker-compose.test.yml b/docker-compose.test.yml index 8ed07501..0bcd2cc6 100644 --- a/docker-compose.test.yml +++ b/docker-compose.test.yml @@ -25,7 +25,7 @@ services: - PORT=8000 neo4j: - image: neo4j:5.22.0 + image: neo4j:5.26.2 ports: - "7474:7474" - "${NEO4J_PORT}:${NEO4J_PORT}"