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 18, 2024
1 parent 36b7004 commit 6d0d8fd
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 6d0d8fd

Please sign in to comment.