diff options
author | Georg Brandl <georg@python.org> | 2011-09-21 09:09:50 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-09-21 09:09:50 +0200 |
commit | 19adf65faaab277ca469b6e7c95117bb3b74359f (patch) | |
tree | 1de10131393aedf6a603ce59f8398a64ba15517c /tests/test_websupport.py | |
parent | ffa14ec4482bce79da308cb1ba36ce5564111664 (diff) | |
download | sphinx-git-19adf65faaab277ca469b6e7c95117bb3b74359f.tar.gz |
Skip all websupport tests for now.
Diffstat (limited to 'tests/test_websupport.py')
-rw-r--r-- | tests/test_websupport.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_websupport.py b/tests/test_websupport.py index 9cf64338a..87cc6ad4f 100644 --- a/tests/test_websupport.py +++ b/tests/test_websupport.py @@ -26,7 +26,7 @@ from sphinx.websupport.storage import StorageBackend from sphinx.websupport.storage.differ import CombinedHtmlDiff try: from sphinx.websupport.storage.sqlalchemystorage import Session, \ - SQLAlchemyStorage, Comment, CommentVote + Comment, CommentVote from sphinx.websupport.storage.sqlalchemy_db import Node sqlalchemy_missing = False except ImportError: @@ -35,6 +35,8 @@ except ImportError: from util import * +raise SkipTest('websupport tests are currently not working') + default_settings = {'builddir': os.path.join(test_root, 'websupport'), 'status': StringIO(), 'warning': StringIO()} |