Fixed wrong import path

This commit is contained in:
2025-12-05 15:50:35 +01:00
parent 9a4d101b0d
commit b2f282e8bb

View File

@@ -20,7 +20,7 @@ from pathlib import Path
import time
from tests.conftest import check_ioc_running
from setup.classes import IocNotRunning
from src.classes import IocNotRunning
# Time we excpect the IOC needs to start up
TIMEOUT_IOC_STARTUP = 10
@@ -75,7 +75,8 @@ except IocNotRunning:
except IocNotRunning:
pass
check_ioc_running()
print(f'Started IOC successfully (process ID {p.pid}). It will automatically terminate after all tests are done.')
print(
f'Started IOC successfully (process ID {p.pid}). It will automatically terminate after all tests are done.')
# Run each enabled folder's relevant tests in parallel
processes = []