-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split requirements files up following DRF example
Fixes #712 Fixes #635 This way not all dependency need to be installed for the different testing steps.
- Loading branch information
Showing
13 changed files
with
61 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
search: False | ||
requirements: | ||
- requirements-development.txt: | ||
- requirements/requirements-codestyle.txt: | ||
update: all | ||
pin: True | ||
- requirements/requirements-documentation.txt: | ||
update: all | ||
pin: True | ||
- requirements/requirements-optionals.txt: | ||
update: all | ||
pin: True | ||
- requirements/requirements-packaging.txt: | ||
update: all | ||
pin: True | ||
- requirements/requirements-testing.txt: | ||
update: all | ||
pin: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
|
||
# The base set of requirements for Django REST framework JSON API is actually | ||
# fairly small, but for the purposes of development and testing | ||
# there are a number of packages that are useful to install. | ||
|
||
# Laying these out as separate requirements files, allows us to | ||
# only included the relevant sets when running tox, and ensures | ||
# we are only ever declaring our dependencies in one place. | ||
|
||
-r requirements/requirements-optionals.txt | ||
-r requirements/requirements-testing.txt | ||
-r requirements/requirements-documentation.txt | ||
-r requirements/requirements-codestyle.txt | ||
-r requirements/requirements-packaging.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
flake8==3.7.7 | ||
flake8-isort==2.7.0 | ||
isort==4.3.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
recommonmark==0.6.0 | ||
Sphinx==2.2.0 | ||
sphinx_rtd_theme==0.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
django-filter==2.2.0 | ||
django-polymorphic==2.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
twine==2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
django-debug-toolbar==2.0 | ||
factory-boy==2.12.0 | ||
Faker==2.0.2 | ||
pytest==5.2.1 | ||
pytest-cov==2.8.1 | ||
pytest-django==3.5.1 | ||
pytest-factoryboy==2.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters