Skip to content
Snippets Groups Projects

Fixing issues with the WebUI and the optical cybersecurity module

Merged Carlos Natalino Da Silva requested to merge fix/webui into develop
@@ -15,6 +15,7 @@
import logging
import uuid
import queue
import time
from unittest.mock import patch
import pytest
@@ -36,6 +37,7 @@ LOGGER = logging.getLogger(__name__)
def optical_attack_detector_service():
_service = OpticalAttackDetectorService()
_service.start()
time.sleep(2)
yield _service
_service.stop()
Loading