mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Add needs_daemon=False to run_tests
This commit is contained in:
parent
d57fc99bca
commit
f9e481e49d
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user