Skip to content

Commit

Permalink
Add missing dev dependancy, dj-database-url into the Pyproject.toml…
Browse files Browse the repository at this point in the history
… for running the test app

To be able to run the test app correctly, you need to have `dj-database-url` installed, which although is defined in the `requirements.txt` file within the app itself, this is inconsistent with the documentation and Makefile which expects your venv to have this already installed based on the root's `pyproject.toml` file.
  • Loading branch information
PacificGilly committed Feb 28, 2024
1 parent ba5712f commit 1976c27
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 17 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ mypy = "^0.931" # Type checking
click = "^8.0.3" # Framework for building cli's
ipdb = "^0.13.9" # ipython breakpoints
black = "^21.12b0" # Code formatting and linting (with pyproject.toml support)
dj-database-url = "^2.1.0" # Used to configure the test database for the test app


[tool.poetry.urls]
"Bug Tracker" = "https://github.com/farridav/django-jazzmin/issues"
Expand Down

0 comments on commit 1976c27

Please sign in to comment.