Commit e3011c1f by markotibold

Implementing graphing.

parent 9ba66a19
......@@ -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'
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment