-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from edx/christina/django-upgrade
Support django 1.11.
- Loading branch information
Showing
10 changed files
with
43 additions
and
33 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 |
---|---|---|
|
@@ -52,4 +52,5 @@ reports/ | |
coverage/ | ||
htmlcov/ | ||
acceptance_tests/*.png | ||
.tox/ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
Matt Drayer <[email protected]> | ||
Zia Fazal <[email protected]> | ||
Douglas Hall <[email protected]> | ||
Christina Roberts <[email protected]> | ||
|
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 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,5 +1,5 @@ | ||
# Django/Framework Packages | ||
django>=1.8,<1.9 | ||
django>=1.8,<2.0 | ||
django-model-utils | ||
|
||
# edX Packages | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[tox] | ||
envlist = py27-django{18,111} | ||
|
||
[testenv] | ||
setenv = | ||
DJANGO_SETTINGS_MODULE = settings | ||
PYTHONPATH = {toxinidir} | ||
|
||
deps = | ||
django18: Django>=1.8,<1.9 | ||
django111: Django>=1.11,<2.0 | ||
-rtest_requirements.txt | ||
|
||
commands = | ||
coverage run manage.py test --verbosity=3 | ||
coverage report -m | ||
coverage html | ||
|
||
[testenv:quality] | ||
commands = | ||
pep8 --config=.pep8 milestones | ||
pylint --rcfile=.pylintrc milestones |