Add needs_daemon=False to run_tests

This commit is contained in:
rallytime 2014-08-12 16:57:34 -06:00
parent d57fc99bca
commit f9e481e49d
2 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ def _random_group_name():
@skipIf(NO_MOCK, NO_MOCK_REASON)
@skipIf(HAS_BOTO is False, 'The boto module must be installed.')
@skipIf(HAS_MOTO is False, 'The moto module must be installed.')
class BotoSecgroupTest(TestCase):
class BotoSecgroupTestCase(TestCase):
'''
TestCase for salt.modules.boto_secgroup module
'''
@ -287,4 +287,4 @@ class BotoSecgroupTest(TestCase):
if __name__ == '__main__':
from integration import run_tests
run_tests(BotoSecgroupTest)
run_tests(BotoSecgroupTestCase, needs_daemon=False)

View File

@ -43,7 +43,7 @@ conn_parameters = {'region': region, 'key': access_key, 'keyid': secret_key, 'pr
@skipIf(NO_MOCK, NO_MOCK_REASON)
@skipIf(HAS_BOTO is False, 'The boto module must be installed.')
@skipIf(HAS_MOTO is False, 'The moto module must be installed.')
class BotoVpcTest(TestCase):
class BotoVpcTestCase(TestCase):
'''
TestCase for salt.modules.boto_vpc module
'''
@ -104,4 +104,4 @@ class BotoVpcTest(TestCase):
if __name__ == '__main__':
from integration import run_tests
run_tests(BotoVpcTest)
run_tests(BotoVpcTestCase, needs_daemon=False)