Added missing import

This commit is contained in:
2025-07-22 13:58:35 +02:00
parent 53d7173dca
commit 71a7e15274
2 changed files with 3 additions and 1 deletions

View File

@@ -37,4 +37,4 @@ def startioc():
f'epicsEnvSet("MASTERMACS1_PORT", "{config["controllers"]["masterMacs1"]["port"]}")\n')
# Start the IOC itself
subprocess.run(root_dir + 'st.cmd')
subprocess.run(root_dir + 'ioc/st.cmd')

View File

@@ -1,3 +1,5 @@
import time
from caproto.sync.client import read, write
from ioc.startioc import startioc
import pytest