def setUpClass(cls): super(TestMessageRoundtrip, cls).setUpClass() config = confuse.Configuration("threatbus") config.set_file("config_integration_test.yaml") cls.threatbus = start_threatbus(config) time.sleep(1)
def setUpClass(cls): super(TestZmqMessageRoundtrip, cls).setUpClass() config = Dynaconf(settings_file="config_integration_test.yaml", ) cls.threatbus = start_threatbus(config) time.sleep(1)
def setUp(self): config = Dynaconf(settings_file="config_integration_test.yaml", ) self.threatbus = start_threatbus(config) time.sleep(1)
def setUp(self): config = confuse.Configuration("threatbus") config.set_file("config_integration_test.yaml") self.threatbus = start_threatbus(config) time.sleep(1)