6ad3745206
Changed the name of configure_dragent Removed the network.yaml file requirement for tests Made a bright line distinction between declared overcloud network settings and environment specific undercloud settings The tests will declare the overcloud settings and acquire the undercloud settings from environment variables.
23 lines
439 B
Python
23 lines
439 B
Python
#!/usr/bin/env python3
|
|
|
|
import unittest
|
|
|
|
from zaza.utilities import _local_utils
|
|
from zaza.charm_tests.dragent import test
|
|
|
|
|
|
class DRAgentTest(unittest.TestCase):
|
|
|
|
BGP_PEER_APPLICATION = 'quagga'
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
_local_utils.setup_logging()
|
|
|
|
def test_bgp_routes(self):
|
|
test.test_bgp_routes(peer_application_name=self.BGP_PEER_APPLICATION)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|