Shift Django to 1.6.x (>= 1.6.7).

This commit is contained in:
Luke Sneeringer
2014-09-10 12:17:35 -05:00
parent fbd17ede7a
commit 3267a988f8
13 changed files with 142 additions and 113 deletions

View File

@@ -157,11 +157,11 @@ pyflakes:
# Run all API unit tests.
test:
$(PYTHON) manage.py test -v2 main
$(PYTHON) manage.py test -v2 awx.main.tests
# Run all API unit tests with coverage enabled.
test_coverage:
coverage run manage.py test -v2 main
coverage run manage.py test -v2 awx.main.tests
# Output test coverage as HTML (into htmlcov directory).
coverage_html:
@@ -169,7 +169,7 @@ coverage_html:
# Run UI unit tests using Selenium.
test_ui:
$(PYTHON) manage.py test -v2 ui
$(PYTHON) manage.py test -v2 awx.ui.tests
# Run API unit tests across multiple Python/Django versions with Tox.
test_tox: