Skip to content

Commit

Permalink
Improvement in the tests of the django_1.4_and_1.5 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
goinnn committed Oct 2, 2013
1 parent f4539e2 commit 998590c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ install_command =
[testenv:py27-dj15]
basepython = python2.7
commands =
;unpatched
python example/run_tests.py
patch -p2 -N -d {toxinidir}/.tox/py27-dj15/lib/python2.7/site-packages/django/ -i {toxinidir}/patches/patch1.5.diff
;patched
python example/run_tests.py
;patched and DEBUG = TEMPLATE_DEBUG = False
python example/run_tests.py example.settings_no_debug
patch -p2 -R -N -d {toxinidir}/.tox/py27-dj15/lib/python2.7/site-packages/django/ -i {toxinidir}/patches/patch1.5.diff
deps =
Expand All @@ -18,7 +23,12 @@ deps =
[testenv:py27-dj14]
basepython = python2.7
commands =
;unpatched
python example/run_tests.py
patch -p2 -N -d {toxinidir}/.tox/py27-dj14/lib/python2.7/site-packages/django/ -i {toxinidir}/patches/patch1.4.diff
;patched
python example/run_tests.py
;patched and DEBUG = TEMPLATE_DEBUG = False
python example/run_tests.py example.settings_no_debug
patch -p2 -R -N -d {toxinidir}/.tox/py27-dj14/lib/python2.7/site-packages/django/ -i {toxinidir}/patches/patch1.4.diff
deps =
Expand All @@ -28,7 +38,12 @@ deps =
[testenv:py33-dj15]
basepython = python3.3
commands =
;unpatched
python example/run_tests.py
patch -p2 -N -d {toxinidir}/.tox/py33-dj15/lib/python3.3/site-packages/django/ -i {toxinidir}/patches/patch1.5.diff
;patched
python example/run_tests.py
;patched and DEBUG = TEMPLATE_DEBUG = False
python example/run_tests.py example.settings_no_debug
patch -p2 -R -N -d {toxinidir}/.tox/py33-dj15/lib/python3.3/site-packages/django/ -i {toxinidir}/patches/patch1.5.diff
deps =
Expand Down

0 comments on commit 998590c

Please sign in to comment.