Merge pull request 'fix: cleanup Qdrant container before and after integration tests' (#19) from fix/qdrant-cleanup into main
Reviewed-on: #19
This commit was merged in pull request #19.
This commit is contained in:
@@ -29,6 +29,7 @@ jobs:
|
||||
|
||||
- name: Start Qdrant
|
||||
run: |
|
||||
docker rm -f qdrant 2>/dev/null || true
|
||||
docker run -d --name qdrant \
|
||||
--network "container:$(hostname)" \
|
||||
docker.io/qdrant/qdrant:latest
|
||||
@@ -53,6 +54,10 @@ jobs:
|
||||
QDRANT_URL: http://localhost:6333
|
||||
COLLECTION_NAME: test_mcp_maildir
|
||||
|
||||
- name: Cleanup Qdrant
|
||||
if: always()
|
||||
run: docker rm -f qdrant 2>/dev/null || true
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [test, integration-test]
|
||||
|
||||
Reference in New Issue
Block a user