Add instructions to set up integration testing to contributor docs (#135)

* Add instructions to set up integration testing w/ neo4j

* Clarify integration env docs
This commit is contained in:
Kyle Diaz 2024-09-22 14:03:23 -04:00 committed by GitHub
parent a1d871e179
commit 02ff178769
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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