Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ export GIT_LFS_SKIP_SMUDGE=1
git clone https://github.com/dimensionalOS/dimos.git
cd dimos

# Run the default test suite (uv run syncs deps on demand; --all-extras
# only needed for the self-hosted tests — see docs/development/testing.md)
# Run the default test suite (uv run syncs deps on demand; --all-groups
# only needed for self-hosted tests / mypy — see docs/development/testing.md)
uv run pytest --numprocesses=auto dimos
```

Expand Down
2 changes: 1 addition & 1 deletion docs/development/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Self-hosted tests need the heavy optional extras (LFS data, perception models, simulation, hardware SDKs, …). Sync them explicitly before running:

```bash
uv sync --all-extras # everything the resolver supports for your platform
uv sync --all-groups # all dependency groups (tests-self-hosted, lint, …)
uv sync --group tests-self-hosted # just what CI installs on the self-hosted runner
```

Expand Down
6 changes: 3 additions & 3 deletions docs/installation/osx.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export GIT_LFS_SKIP_SMUDGE=1
git clone https://github.com/dimensionalOS/dimos.git
cd dimos

# `uv run` syncs the project deps + `tests` group on demand — enough for
# the default test suite and mypy. For self-hosted tests, sync the extras
# explicitly (see docs/development/testing.md).
# Install all dependency groups (tests, lint, …) so mypy + pytest are
# both available. For self-hosted tests, see docs/development/testing.md.
uv sync --all-groups

# type check
uv run mypy dimos
Expand Down
6 changes: 3 additions & 3 deletions docs/installation/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export GIT_LFS_SKIP_SMUDGE=1
git clone https://github.com/dimensionalOS/dimos.git
cd dimos

# `uv run` syncs the project deps + `tests` group on demand — enough for
# the default test suite and mypy. For self-hosted tests, sync the extras
# explicitly (see docs/development/testing.md).
# Install all dependency groups (tests, lint, …) so mypy + pytest are
# both available. For self-hosted tests, see docs/development/testing.md.
uv sync --all-groups

# type check
uv run mypy dimos
Expand Down
Loading