Try and use pytest-django instead of lite

This commit is contained in:
Matt Robenolt 2014-04-14 23:04:53 -07:00
parent 02af8931a7
commit d5a6c9fb16
1 changed files with 4 additions and 1 deletions

View File

@ -68,7 +68,7 @@ tests_require = [
'pytz',
'pytest',
'pytest-cov>=1.4',
'pytest-django-lite',
'pytest-django',
'python-coveralls',
'tornado',
'webob',
@ -107,6 +107,9 @@ setup(
},
license='BSD',
tests_require=tests_require,
dependency_links=[
'https://github.com/pelme/pytest_django/archive/21327e1b1f254dcec2e870114719ea279b479506.zip#egg=pytest-django',
],
cmdclass={'test': PyTest},
include_package_data=True,
entry_points={