-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
ci: Increase Weaviate's disk usage + print docker logs #3026
Conversation
@@ -391,6 +395,10 @@ jobs: | |||
run: | | |||
pytest ${{ env.PYTEST_PARAMS }} -m "not integration" test/document_stores/ --document_store_type=milvus | |||
|
|||
- name: Dump docker logs on failure |
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.
Same here
@@ -244,6 +244,10 @@ jobs: | |||
run: | | |||
pytest ${{ env.PYTEST_PARAMS }} -m "elasticsearch and not integration" test/document_stores/ --document_store_type=elasticsearch | |||
|
|||
- name: Dump docker logs on failure |
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.
is this related to weaviate?
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.
This is not directly related to Weaviate, but to the docker containers in the CI. This will allow us to inspect the docker logs if the CI fails.
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.
🤞 5% more will suffice, let's ship it!
Related Issues
test_retriever.py::test_dpr_embedding
for Weaviate is flaky #3024Proposed Changes:
This PR increases the disk limit for Weaviate in the CI from the default 90% to 95%. Furthermore, it adds the
gh-docker-logs
action which will provide the Docker logs in cases where the CI fails.