mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Implementing graphing.
This commit is contained in:
parent
9ba66a19f8
commit
e3011c1fb8
|
@ -54,7 +54,7 @@ MEDIA_URL = ''
|
|||
|
||||
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
|
||||
# trailing slash.
|
||||
# Examples: "http://foo.com/media/", "/media/".
|
||||
# Examples: "http://foo.com/media/", "/media/".
|
||||
ADMIN_MEDIA_PREFIX = '/media/'
|
||||
|
||||
# Make this unique, and don't share it with anybody.
|
||||
|
@ -95,3 +95,8 @@ INSTALLED_APPS = (
|
|||
# 'django.contrib.admindocs',
|
||||
'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=
|
||||
django==1.2.4
|
||||
simplejson
|
||||
unittest-xml-reporting
|
||||
|
||||
[testenv:py26-django12]
|
||||
basepython=python2.6
|
||||
deps=
|
||||
django==1.2.4
|
||||
unittest-xml-reporting
|
||||
|
||||
[testenv:py27-django12]
|
||||
basepython=python2.7
|
||||
deps=
|
||||
django==1.2.4
|
||||
unittest-xml-reporting
|
||||
|
||||
[testenv:py25-django13]
|
||||
basepython=python2.5
|
||||
deps=
|
||||
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
||||
simplejson
|
||||
unittest-xml-reporting
|
||||
|
||||
[testenv:py26-django13]
|
||||
basepython=python2.6
|
||||
deps=
|
||||
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
||||
|
||||
unittest-xml-reporting
|
||||
[testenv:py27-django13]
|
||||
basepython=python2.7
|
||||
deps=
|
||||
http://www.djangoproject.com/download/1.3-rc-1/tarball/
|
||||
|
||||
unittest-xml-reporting
|
||||
|
|
Loading…
Reference in New Issue
Block a user