10 lines
235 B
Python
Executable File
10 lines
235 B
Python
Executable File
# This module defines fixtures which are shared for all tests of motor "rot1".
|
|
|
|
import pytest
|
|
from common import TurboPMAC, read_config
|
|
import time
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def motor():
|
|
return TurboPMAC('turboPmac1', 'lin1')
|