Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 773 Bytes

File metadata and controls

33 lines (21 loc) · 773 Bytes

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