Skip to content

Commit

Permalink
fix(nox): add missing test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-fs committed Jun 25, 2024
1 parent 861fbab commit 186baf2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
[![Ruff codestyle][ruff badge]][ruff project]


[pypi status]: https://pypi.org/project/django-json-agg/
[read the docs]: https://django-json-agg.readthedocs.io/
[tests]: https://github.com/quipucords/django-json-agg/actions?workflow=Tests
Expand Down
6 changes: 0 additions & 6 deletions docs/usage.md
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# Usage

```{eval-rst}
.. click:: json_agg.__main__:main
:prog: django-json-agg
:nested: full
```
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def safety(session: Session) -> None:
def tests(session: Session) -> None:
"""Run the test suite."""
session.install(".")
session.install("coverage[toml]", "pytest", "pygments")
session.install("coverage[toml]", "pytest", "pygments", "pytest-django", "faker")
try:
session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs)
finally:
Expand Down

0 comments on commit 186baf2

Please sign in to comment.