mirror of https://github.com/celery/kombu.git
17 lines
394 B
Python
17 lines
394 B
Python
from nose import SkipTest
|
|
|
|
from funtests import transport
|
|
|
|
|
|
class test_sqla(transport.TransportCase):
|
|
transport = "sqlalchemy"
|
|
prefix = "sqlalchemy"
|
|
event_loop_max = 10
|
|
connection_options = {"hostname": "sqlite://"}
|
|
|
|
def before_connect(self):
|
|
try:
|
|
import sqlakombu
|
|
except ImportError:
|
|
raise SkipTest("kombu-sqlalchemy not installed")
|