mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Test for Python 3
This commit is contained in:
parent
3732b2ee09
commit
2e4d435f4f
2 changed files with 15 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -44,9 +44,9 @@ setup(
|
|||
include_package_data=True,
|
||||
tests_require=[
|
||||
'beautifulsoup4==4.1.3',
|
||||
'nose==1.2.1',
|
||||
'nose-progressive==1.3',
|
||||
'django-nose==1.1',
|
||||
'nose==1.3.0',
|
||||
'nose-progressive==1.5',
|
||||
'django-nose==1.2',
|
||||
'Pillow<3.0',
|
||||
],
|
||||
test_suite='testrunner.run_tests',
|
||||
|
|
|
|||
12
tox.ini
12
tox.ini
|
|
@ -1,11 +1,23 @@
|
|||
[tox]
|
||||
envlist =
|
||||
py33-django15,
|
||||
py32-django15,
|
||||
py27-django15, py27-django14, py27-django13, py27-django12,
|
||||
py26-django15, py26-django14, py26-django13, py26-django12
|
||||
|
||||
[testenv]
|
||||
commands = python setup.py test
|
||||
|
||||
[testenv:py33-django15]
|
||||
basepython = python3.3
|
||||
deps =
|
||||
Django>=1.5,<1.6
|
||||
|
||||
[testenv:py32-django15]
|
||||
basepython = python3.2
|
||||
deps =
|
||||
Django>=1.5,<1.6
|
||||
|
||||
[testenv:py27-django15]
|
||||
basepython = python2.7
|
||||
deps =
|
||||
|
|
|
|||
Loading…
Reference in a new issue