mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-24 17:00:24 +00:00
Added tox config file.
This commit is contained in:
parent
833af52734
commit
c384672f5d
1 changed files with 31 additions and 0 deletions
31
tox.ini
Normal file
31
tox.ini
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
[tox]
|
||||
envlist =
|
||||
py27-django13,
|
||||
py27-django12,
|
||||
py26-django13,
|
||||
py26-django12
|
||||
|
||||
[testenv]
|
||||
changedir = tests
|
||||
setenv = PYTHONPATH = {toxinidir}/tests
|
||||
commands = django-admin.py test core --settings=settings
|
||||
|
||||
[testenv:py27-django13]
|
||||
deps =
|
||||
Django>=1.3,<=1.4
|
||||
Pillow
|
||||
|
||||
[testenv:py27-django12]
|
||||
deps =
|
||||
Django>=1.2,<=1.3
|
||||
Pillow
|
||||
|
||||
[testenv:py26-django13]
|
||||
deps =
|
||||
Django>=1.3,<=1.4
|
||||
Pillow
|
||||
|
||||
[testenv:py26-django12]
|
||||
deps =
|
||||
Django>=1.2,<=1.3
|
||||
Pillow
|
||||
Loading…
Reference in a new issue