We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 473f70c commit a0cf623Copy full SHA for a0cf623
2 files changed
CONTRIBUTING.md
@@ -27,7 +27,12 @@ project and how to get started as a developer.
27
28
> **Note**: Basic Memory uses [just](https://just.systems) as a modern command runner. Install with `brew install just` or `cargo install just`.
29
30
-3. **Run the Tests**:
+3. **Activate the Virtual Environment**
31
+ ```bash
32
+ source .venv/bin/activate
33
+ ```
34
+
35
+4. **Run the Tests**:
36
```bash
37
# Run all tests
38
just test
justfile
@@ -3,6 +3,9 @@
3
# Install dependencies
4
install:
5
pip install -e ".[dev]"
6
+ uv sync
7
+ @echo ""
8
+ @echo "💡 Remember to activate the virtual environment by running: source .venv/bin/activate"
9
10
# Run unit tests in parallel
11
test-unit:
0 commit comments