You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 661B

12345678910111213141516171819202122232425
  1. # Clickzetta Integration Tests
  2. ## Running Tests
  3. To run the Clickzetta integration tests, you need to set the following environment variables:
  4. ```bash
  5. export CLICKZETTA_USERNAME=your_username
  6. export CLICKZETTA_PASSWORD=your_password
  7. export CLICKZETTA_INSTANCE=your_instance
  8. export CLICKZETTA_SERVICE=api.clickzetta.com
  9. export CLICKZETTA_WORKSPACE=your_workspace
  10. export CLICKZETTA_VCLUSTER=your_vcluster
  11. export CLICKZETTA_SCHEMA=dify
  12. ```
  13. Then run the tests:
  14. ```bash
  15. pytest api/tests/integration_tests/vdb/clickzetta/
  16. ```
  17. ## Security Note
  18. Never commit credentials to the repository. Always use environment variables or secure credential management systems.