mirror of
https://github.com/EyeTrackVR/OpenIris.git
synced 2025-11-04 15:39:42 +08:00
14 lines
285 B
Python
14 lines
285 B
Python
import pytest_asyncio
|
|
|
|
from .OpenIrisClient import OpenIrisClient
|
|
|
|
|
|
@pytest_asyncio.fixture()
|
|
async def device_url():
|
|
return "http://openiristracker.local:81/"
|
|
|
|
|
|
@pytest_asyncio.fixture()
|
|
async def openiris_client(device_url):
|
|
return OpenIrisClient(tracker_address=device_url)
|