From 02ff178769cd0776765eb56ba695ca5be1de022d Mon Sep 17 00:00:00 2001 From: Kyle Diaz Date: Sun, 22 Sep 2024 14:03:23 -0400 Subject: [PATCH] Add instructions to set up integration testing to contributor docs (#135) * Add instructions to set up integration testing w/ neo4j * Clarify integration env docs --- CONTRIBUTING.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8db4f5bf..3827ac81 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,6 +17,15 @@ We're excited you're interested in contributing to Graphiti! This document outli ``` make install ``` + - To run integration tests, set the appropriate environment variables + ``` + export TEST_OPENAI_API_KEY=... + export TEST_OPENAI_MODEL=... + + export NEO4J_URI=neo4j://... + export NEO4J_USER=... + export NEO4J_PASSWORD=... + ``` ## Making Changes