Commit 41f21555 authored by Joanne Hugé's avatar Joanne Hugé

end-to-end-testing/test_ors: stop services after test

parent c506ffee
Pipeline #39676 failed with stage
in 0 seconds
......@@ -198,13 +198,9 @@ class WebsocketTestClass(e2e.EndToEndTestCase):
if hasattr(cls, 'ws') and cls.ws is not None:
cls.logger.info("Closing websocket")
cls.ws.close()
# TODO: uncomment these lines
#cls.update_service('enb', 'stopped', lock=False)
#cls.update_service('core-network', 'stopped', lock=False)
#cls.update_service('ue', 'stopped', lock=False)
cls.update_service('enb', 'started', lock=False)
cls.update_service('core-network', 'started', lock=False)
cls.update_service('ue', 'started', lock=False)
cls.update_service('enb', 'stopped', lock=False)
cls.update_service('core-network', 'stopped', lock=False)
cls.update_service('ue', 'stopped', lock=False)
# Don't call super().tearDownClass as we don't want to destroy requested instances
def send(self, msg):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment