Skip to content

Commit

Permalink
Move dj-database-url requirement to base
Browse files Browse the repository at this point in the history
This change only affects this repo, but will keep Jenkins jobs from
hitting import failures.

The Jenkins jobs install base requirements and then issue manage.py
commands, but the repo's manage.py file uses settings_for_testing.py.

Since the requirements files only affect this repo, it's most efficient
to move the db requirment into base.txt and leave the jenkins jobs
alone.
  • Loading branch information
higs4281 committed Mar 19, 2018
1 parent 9c1180f commit 0b5ca7b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
beautifulsoup4==4.5.3
Django==1.8.15
django-cors-headers
dj-database-url==0.4.2
django-localflavor
djangorestframework==3.1.3
lxml==3.7.2
Expand Down
1 change: 0 additions & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
-r base.txt

coverage==4.2
dj-database-url==0.4.2
mock==2.0.0
model_mommy==1.2.6

0 comments on commit 0b5ca7b

Please sign in to comment.