Skip to content

Commit

Permalink
refactor(build): make dev requirements inherit from test
Browse files Browse the repository at this point in the history
This means we don't have to keep the two files in sync manually anymore
  • Loading branch information
Restioson committed Oct 17, 2024
1 parent 87b7dcd commit d5c2391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SHELL ["/bin/bash", "-c"]
WORKDIR /app

# Install dependencies
COPY requirements.txt requirements-dev.txt /app/
COPY requirements.txt requirements-test.txt requirements-dev.txt /app/

RUN <<EOF
set -exo pipefail
Expand Down
6 changes: 1 addition & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
-r requirements.txt
django-debug-toolbar
django-extensions
faker
-r requirements-test.txt
pygraphviz
ruff

0 comments on commit d5c2391

Please sign in to comment.