diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1aa57a4d..d4dd0c14 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ Or use the local package editable install method: ```bash python -m venv .venv source .venv/bin/activate -pip install -e .[all,dev] +pip install -e '.[all,dev]' ``` Then to deactivate the env: @@ -54,6 +54,8 @@ Tests (with vectorizers): make test-cov ``` +**NOTE**: Some tests require the `REDIS_URL` environment variable to be set (e.g. `export REDIS_URL=redis://localhost:6379`). + Tests w/out vectorizers: ```bash SKIP_VECTORIZERS=true make test-cov