Skip to content
Open
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 AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ uv run pytest
make test

# Run a single test file
uv run pytest deep_river/utils/test_tensor_conversion.py
uv run pytest tests/utils/test_tensor_conversion.py

# Lint and format via pre-commit hooks
make format
Expand Down Expand Up @@ -69,7 +69,7 @@ Key modules:
### Estimator testing framework (`deep_river/utils/`)

- `utils.check_estimator(MyEstimator)` runs River's estimator checks together with deep-river checks for tensor conversion, learning, and persistence.
- `deep_river/utils/test_estimators.py` discovers estimators and runs the project-wide estimator checks.
- `tests/utils/test_estimators.py` discovers estimators and runs the project-wide estimator checks.
- Pytest is configured with `--doctest-modules` and `--doctest-glob='README.md'`, so docstring examples and README examples are executed as tests.

### Documentation and benchmarks
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ profile = "black"

[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-glob='README.md' -q"
testpaths = ["deep_river", "README.md"]
testpaths = ["tests", "deep_river", "README.md"]
filterwarnings = [
"ignore::DeprecationWarning",
]
Expand Down
File renamed without changes.
Loading