Skip to content

Commit

Permalink
Merge branch '0.8-maintenance'
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Mar 27, 2012
2 parents ad5630c + 26e9cc7 commit fc972cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES
Expand Up @@ -39,6 +39,7 @@ Version 0.8.4
used special methods properly.
- Added a workaround to prevent the XSS protection from Chrome
breaking the debugger.
- Skip redis tests if redis is not running.

Version 0.8.3
-------------
Expand Down
5 changes: 5 additions & 0 deletions werkzeug/testsuite/contrib/cache.py
Expand Up @@ -19,6 +19,11 @@

try:
import redis
try:
from redis.exceptions import ConnectionError as RedisConnectionError
cache.RedisCache(key_prefix='werkzeug-test-case:')._client.set('test','connection')
except RedisConnectionError:
redis = None
except ImportError:
redis = None

Expand Down

0 comments on commit fc972cb

Please sign in to comment.