mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-05-15 05:13:43 +03:00
Implementing graphing.
This commit is contained in:
parent
9ba66a19f8
commit
e3011c1fb8
|
@ -95,3 +95,8 @@ INSTALLED_APPS = (
|
||||||
# 'django.contrib.admindocs',
|
# 'django.contrib.admindocs',
|
||||||
'djangorestframework',
|
'djangorestframework',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.run_tests'
|
||||||
|
TEST_OUTPUT_VERBOSE = True
|
||||||
|
TEST_OUTPUT_DESCRIPTIONS = True
|
||||||
|
TEST_OUTPUT_DIR = 'xmlrunner'
|
||||||
|
|
8
tox.ini
8
tox.ini
|
@ -11,30 +11,34 @@ basepython=python2.5
|
||||||
deps=
|
deps=
|
||||||
django==1.2.4
|
django==1.2.4
|
||||||
simplejson
|
simplejson
|
||||||
|
unittest-xml-reporting
|
||||||
|
|
||||||
[testenv:py26-django12]
|
[testenv:py26-django12]
|
||||||
basepython=python2.6
|
basepython=python2.6
|
||||||
deps=
|
deps=
|
||||||
django==1.2.4
|
django==1.2.4
|
||||||
|
unittest-xml-reporting
|
||||||
|
|
||||||
[testenv:py27-django12]
|
[testenv:py27-django12]
|
||||||
basepython=python2.7
|
basepython=python2.7
|
||||||
deps=
|
deps=
|
||||||
django==1.2.4
|
django==1.2.4
|
||||||
|
unittest-xml-reporting
|
||||||
|
|
||||||
[testenv:py25-django13]
|
[testenv:py25-django13]
|
||||||
basepython=python2.5
|
basepython=python2.5
|
||||||
deps=
|
deps=
|
||||||
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
||||||
simplejson
|
simplejson
|
||||||
|
unittest-xml-reporting
|
||||||
|
|
||||||
[testenv:py26-django13]
|
[testenv:py26-django13]
|
||||||
basepython=python2.6
|
basepython=python2.6
|
||||||
deps=
|
deps=
|
||||||
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
||||||
|
unittest-xml-reporting
|
||||||
[testenv:py27-django13]
|
[testenv:py27-django13]
|
||||||
basepython=python2.7
|
basepython=python2.7
|
||||||
deps=
|
deps=
|
||||||
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
||||||
|
unittest-xml-reporting
|
||||||
|
|
Loading…
Reference in New Issue
Block a user