Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

valkey-haystack

Contributing

Refer to the general Contribution Guidelines.

Running Tests

To run integration tests locally, you need a running Valkey instance. You can start one using Docker:

docker run -d -p 6379:6379 valkey/valkey-bundle:latest

Navigate to the integration directory and set up environment variables:

cd integrations/valkey

# Sync dependencies including test dependencies
uv sync --group test

# Run unit tests only
hatch run test:unit

# Run integration tests only (requires Valkey instance)
hatch run test:integration

# Run all tests
hatch run test:all