mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-05-24 17:30:41 +02:00
13 lines
297 B
Python
13 lines
297 B
Python
import os
|
|
import sys
|
|
|
|
import bec_lib
|
|
|
|
from ophyd_devices.utils.static_device_test import launch
|
|
|
|
|
|
def test_static_device_test():
|
|
config_path = os.path.join(os.path.dirname(bec_lib.__file__), "configs", "demo_config.yaml")
|
|
sys.argv = ["", "--config", config_path, "--connect"]
|
|
launch()
|