Skip testing for websupport if sqlalchemy not installed

This commit is contained in:
Takeshi KOMIYA 2017-05-28 10:05:41 +09:00
parent 402e0bc706
commit 2817623500

View File

@ -12,6 +12,7 @@
from sphinx.websupport import WebSupport
try:
sqlalchemy_missing = False
import sqlalchemy # NOQA
except ImportError:
sqlalchemy_missing = True