-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pinecone Document Store - minimal implementation #81
Conversation
Co-authored-by: Massimiliano Pippi <[email protected]>
This reverts commit f42c540.
# Pinecone tests are slow (require HTTP requests), so we run them in parallel | ||
# with pytest-xdist (https://pytest-xdist.readthedocs.io/en/stable/distribution.html) | ||
test = "pytest -n auto --maxprocesses=3 {args:tests}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pytest-xdist works for parallelization.
I'm limiting the processes to 3, otherwise Pinecone fails with "too many requests"
Including the filters, tests last 5-6 minutes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
Part of #128
Minimal implementation.