From 284cc272e8421fa578c88d97e2aeacd9ac19e811 Mon Sep 17 00:00:00 2001 From: Patrick Wang Date: Mon, 3 Aug 2020 21:28:57 -0400 Subject: [PATCH] Setup Neo4j via Bolt interface This is a workaround for https://github.com/encode/httpx/issues/96 --- tests/setup/startup_helpers.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/setup/startup_helpers.sh b/tests/setup/startup_helpers.sh index 4110aaa..9f0de30 100755 --- a/tests/setup/startup_helpers.sh +++ b/tests/setup/startup_helpers.sh @@ -16,6 +16,7 @@ echo "Postgres initialized." set -a source ../.env set +a +export NEO4J_URL=bolt://localhost:7687 echo "Waiting for Neo4j to start..." until echo $(docker logs remote_neo4j 2>&1) | grep -q "Bolt enabled"; do sleep 1; done