C:\Python25\lib\site-packages\django-1.3-py2.5.egg\django\db\__init__.py:19: DeprecationWarning: settings.DATABASE_* is deprecated; use settings.DATABASES instead.
  DeprecationWarning
C:\Python25\lib\site-packages\django-1.3-py2.5.egg\django\db\__init__.py:60: DeprecationWarning: Short names for ENGINE in database configurations are deprecated. Prepend default.ENGINE with 'django.db.backends.'
  DeprecationWarning
nose.plugins.cover: ERROR: Coverage not available: unable to import coverage module
Testing DateTimeSinceColumn ... ok
Testing datagrids with custom column orders ... C:\Python25\lib\site-packages\django-1.3-py2.5.egg\django\template\loaders\filesystem.py:58: DeprecationWarning: 'django.template.loaders.filesystem.load_template_source' is deprecated; use 'django.template.loaders.filesystem.Loader' instead.
  DeprecationWarning
C:\Python25\lib\site-packages\django-1.3-py2.5.egg\django\template\loaders\app_directories.py:71: DeprecationWarning: 'django.template.loaders.app_directories.load_template_source' is deprecated; use 'django.template.loaders.app_directories.Loader' instead.
  DeprecationWarning
ok
Testing basic datagrid rendering ... ok
Testing rendering datagrid to HTTPResponse ... ok
Testing datagrids with ascending sort ... ok
Testing datagrids with descending sort ... ok
Testing view_feed with a URL error ... ok
Testing view_feed with the feed-inline.html template ... ERROR
Testing view_feed with the feed-page.html template ... ERROR
Testing creation of WatchedFileHandler. ... ok
Testing mail authentication settings deserialization ... ok
Testing synchronizing SiteConfigurations through cache ... ok
Testing synchronizing SiteConfigurations with an expired cache ... ok
Testing ageid tag (yesterday) ... ok
Testing ageid tag (two days ago) ... ok
Testing ageid tag (three days ago) ... ok
Testing ageid tag (four days ago) ... ok
Testing ageid tag (non-datetime object) ... ok
Testing ageid tag (now) ... ok
Testing box tag (with extra class) ... ok
Testing box tag (invalid usage) ... ok
Testing box tag ... ok
Testing cache_memoize ... ok
Testing condense tag ... ok
Testing errorbox tag (invalid usage) ... ok
Testing errorbox tag (with id) ... ok
Testing errorbox tag ... ok
Testing djblets.http.get_requested_mimetype with no consensus between client and server ... ok
Testing djblets.http.get_requested_mimetype with supported mimetype ... ok
Testing djblets.http.get_requested_mimetype with unsupported mimetype ... ok
Testing djblets.http.get_requested_mimetype with supported */* mimetype ... ok
Testing djblets.http.get_http_accept_lists ... ok
Testing quote_text filter (level 2) ... ok
Testing quote_text filter (default level) ... ok
Testing quoted_email tag (invalid usage) ... ok
Testing escapespaces filter ... ok
Testing humanize_list filter (length 0) ... ok
Testing humanize_list filter (length 1) ... ok
Testing humanize_list filter (length 2) ... ok
Testing humanize_list filter (length 3) ... ok
Testing humanize_list filter (length 4) ... ok
Testing indent filter ... ok

======================================================================
ERROR: Testing view_feed with the feed-inline.html template
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\src\djblets\djblets\feedview\tests.py", line 40, in testViewFeedInline
    response = self.client.get('/feed-inline/')
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\test\client.py", line 445, in get
    response = super(Client, self).get(path, data=data, **extra)
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\test\client.py", line 229, in get
    return self.request(**r)
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\core\handlers\base.py", line 111, in get_response
    response = callback(request, *callback_args, **callback_kwargs)
  File "C:\src\djblets\djblets\feedview\views.py", line 38, in view_feed
    force_overwrite=request.GET.has_key("reload")))
  File "C:\src\djblets\djblets\util\misc.py", line 173, in cache_memoize
    data = lookup_callable()
  File "C:\src\djblets\djblets\feedview\views.py", line 23, in fetch_feed
    data = urllib2.urlopen(url).read()
  File "C:\Python25\lib\urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "C:\Python25\lib\urllib2.py", line 381, in open
    response = self._open(req, data)
  File "C:\Python25\lib\urllib2.py", line 399, in _open
    '_open', req)
  File "C:\Python25\lib\urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "C:\Python25\lib\urllib2.py", line 1203, in file_open
    return self.open_local_file(req)
  File "C:\Python25\lib\urllib2.py", line 1223, in open_local_file
    stats = os.stat(localfile)
WindowsError: [Error 3] The system cannot find the path specified: '\\testdata\\sample.rss'
-------------------- >> begin captured logging << --------------------
django.request: ERROR: Internal Server Error: /feed-inline/
Traceback (most recent call last):
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\core\handlers\base.py", line 111, in get_response
    response = callback(request, *callback_args, **callback_kwargs)
  File "C:\src\djblets\djblets\feedview\views.py", line 38, in view_feed
    force_overwrite=request.GET.has_key("reload")))
  File "C:\src\djblets\djblets\util\misc.py", line 173, in cache_memoize
    data = lookup_callable()
  File "C:\src\djblets\djblets\feedview\views.py", line 23, in fetch_feed
    data = urllib2.urlopen(url).read()
  File "C:\Python25\lib\urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "C:\Python25\lib\urllib2.py", line 381, in open
    response = self._open(req, data)
  File "C:\Python25\lib\urllib2.py", line 399, in _open
    '_open', req)
  File "C:\Python25\lib\urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "C:\Python25\lib\urllib2.py", line 1203, in file_open
    return self.open_local_file(req)
  File "C:\Python25\lib\urllib2.py", line 1223, in open_local_file
    stats = os.stat(localfile)
WindowsError: [Error 3] The system cannot find the path specified: '\\testdata\\sample.rss'
--------------------- >> end captured logging << ---------------------

======================================================================
ERROR: Testing view_feed with the feed-page.html template
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\src\djblets\djblets\feedview\tests.py", line 34, in testViewFeedPage
    response = self.client.get('/feed/')
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\test\client.py", line 445, in get
    response = super(Client, self).get(path, data=data, **extra)
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\test\client.py", line 229, in get
    return self.request(**r)
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\core\handlers\base.py", line 111, in get_response
    response = callback(request, *callback_args, **callback_kwargs)
  File "C:\src\djblets\djblets\feedview\views.py", line 38, in view_feed
    force_overwrite=request.GET.has_key("reload")))
  File "C:\src\djblets\djblets\util\misc.py", line 173, in cache_memoize
    data = lookup_callable()
  File "C:\src\djblets\djblets\feedview\views.py", line 23, in fetch_feed
    data = urllib2.urlopen(url).read()
  File "C:\Python25\lib\urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "C:\Python25\lib\urllib2.py", line 381, in open
    response = self._open(req, data)
  File "C:\Python25\lib\urllib2.py", line 399, in _open
    '_open', req)
  File "C:\Python25\lib\urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "C:\Python25\lib\urllib2.py", line 1203, in file_open
    return self.open_local_file(req)
  File "C:\Python25\lib\urllib2.py", line 1223, in open_local_file
    stats = os.stat(localfile)
WindowsError: [Error 3] The system cannot find the path specified: '\\testdata\\sample.rss'
-------------------- >> begin captured logging << --------------------
django.request: ERROR: Internal Server Error: /feed/
Traceback (most recent call last):
  File "c:\python25\lib\site-packages\django-1.3-py2.5.egg\django\core\handlers\base.py", line 111, in get_response
    response = callback(request, *callback_args, **callback_kwargs)
  File "C:\src\djblets\djblets\feedview\views.py", line 38, in view_feed
    force_overwrite=request.GET.has_key("reload")))
  File "C:\src\djblets\djblets\util\misc.py", line 173, in cache_memoize
    data = lookup_callable()
  File "C:\src\djblets\djblets\feedview\views.py", line 23,['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'djblets.auth', 'djblets.datagrid', 'djblets.feedview', 'djblets.gravatars', 'djblets.log', 'djblets.siteconfig', 'djblets.testing', 'djblets.util', 'djblets.webapi']
Creating test database for alias 'default'...
Creating tables ...
Installing custom SQL ...
Installing indexes ...
No fixtures found.
 in fetch_feed
    data = urllib2.urlopen(url).read()
  File "C:\Python25\lib\urllib2.py", line 124, in urlopen
    return _opener.open(url, data)
  File "C:\Python25\lib\urllib2.py", line 381, in open
    response = self._open(req, data)
  File "C:\Python25\lib\urllib2.py", line 399, in _open
    '_open', req)
  File "C:\Python25\lib\urllib2.py", line 360, in _call_chain
    result = func(*args)
  File "C:\Python25\lib\urllib2.py", line 1203, in file_open
    return self.open_local_file(req)
  File "C:\Python25\lib\urllib2.py", line 1223, in open_local_file
    stats = os.stat(localfile)
WindowsError: [Error 3] The system cannot find the path specified: '\\testdata\\sample.rss'
--------------------- >> end captured logging << ---------------------

----------------------------------------------------------------------
Ran 42 tests in 4.465s

FAILED (errors=2)