dify/api/tests/integration_tests/vdb/clickzetta
Guangdong Liu 1abf1240b2
Some checks failed
autofix.ci / autofix (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
Check i18n Files and Create PR / check-and-update (push) Has been cancelled
refactor: replace try-except blocks with contextlib.suppress for cleaner exception handling (#24284)
2025-08-21 18:18:49 +08:00
..
README.md feat: Add Clickzetta Lakehouse vector database integration (#22551) 2025-08-07 14:21:46 +08:00
test_clickzetta.py refactor: replace try-except blocks with contextlib.suppress for cleaner exception handling (#24284) 2025-08-21 18:18:49 +08:00
test_docker_integration.py fix: ensure vector database cleanup on dataset deletion regardless of document presence (affects all 33 vector databases) (#23574) 2025-08-08 09:18:43 +08:00

Clickzetta Integration Tests

Running Tests

To run the Clickzetta integration tests, you need to set the following environment variables:

export CLICKZETTA_USERNAME=your_username
export CLICKZETTA_PASSWORD=your_password
export CLICKZETTA_INSTANCE=your_instance
export CLICKZETTA_SERVICE=api.clickzetta.com
export CLICKZETTA_WORKSPACE=your_workspace
export CLICKZETTA_VCLUSTER=your_vcluster
export CLICKZETTA_SCHEMA=dify

Then run the tests:

pytest api/tests/integration_tests/vdb/clickzetta/

Security Note

Never commit credentials to the repository. Always use environment variables or secure credential management systems.