mirror of https://github.com/celery/kombu.git
Moved kombu/tests/test_functional to funtests/ so they are not executed with the unit test suite
This commit is contained in:
parent
8f8b3c9df9
commit
5a2b661109
|
@ -0,0 +1,3 @@
|
|||
import sys
|
||||
|
||||
sys.path.append("..")
|
|
@ -1,4 +1,4 @@
|
|||
from kombu.tests.test_functional import transport
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_amqplib(transport.TransportCase):
|
|
@ -1,6 +1,6 @@
|
|||
from nose import SkipTest
|
||||
|
||||
from kombu.tests.test_functional import transport
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_beanstalk(transport.TransportCase):
|
|
@ -1,8 +1,9 @@
|
|||
from nose import SkipTest
|
||||
|
||||
from kombu.tests.test_functional import transport
|
||||
from kombu.tests.utils import redirect_stdouts
|
||||
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_django(transport.TransportCase):
|
||||
transport = "django"
|
|
@ -1,4 +1,4 @@
|
|||
from kombu.tests.test_functional import transport
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_mongodb(transport.TransportCase):
|
|
@ -1,4 +1,4 @@
|
|||
from kombu.tests.test_functional import transport
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_couchdb(transport.TransportCase):
|
|
@ -1,4 +1,4 @@
|
|||
from kombu.tests.test_functional import transport
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_redis(transport.TransportCase):
|
|
@ -1,6 +1,6 @@
|
|||
from nose import SkipTest
|
||||
|
||||
from kombu.tests.test_functional import transport
|
||||
from funtests import transport
|
||||
|
||||
|
||||
class test_sqla(transport.TransportCase):
|
||||
|
@ -13,4 +13,4 @@ class test_sqla(transport.TransportCase):
|
|||
try:
|
||||
import sqlakombu
|
||||
except ImportError:
|
||||
raise SkipTest("sqlalchemy-kombu not installed")
|
||||
raise SkipTest("kombu-sqlalchemy not installed")
|
Loading…
Reference in New Issue