Moved kombu/tests/test_functional to funtests/ so they are not executed with the unit test suite

This commit is contained in:
Ask Solem 2010-11-12 11:50:18 +01:00
parent 8f8b3c9df9
commit 5a2b661109
11 changed files with 12 additions and 8 deletions

3
funtests/__init__.py Normal file
View File

@ -0,0 +1,3 @@
import sys
sys.path.append("..")

View File

@ -1,4 +1,4 @@
from kombu.tests.test_functional import transport
from funtests import transport
class test_amqplib(transport.TransportCase):

View File

@ -1,6 +1,6 @@
from nose import SkipTest
from kombu.tests.test_functional import transport
from funtests import transport
class test_beanstalk(transport.TransportCase):

View File

@ -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"

View File

@ -1,4 +1,4 @@
from kombu.tests.test_functional import transport
from funtests import transport
class test_mongodb(transport.TransportCase):

View File

@ -1,4 +1,4 @@
from kombu.tests.test_functional import transport
from funtests import transport
class test_couchdb(transport.TransportCase):

View File

@ -1,4 +1,4 @@
from kombu.tests.test_functional import transport
from funtests import transport
class test_redis(transport.TransportCase):

View File

@ -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")