mirror of
https://github.com/logos-storage/bittorrent-benchmarks.git
synced 2026-01-03 13:33:07 +00:00
15 lines
314 B
Python
15 lines
314 B
Python
import os
|
|
|
|
import pytest
|
|
from urllib3.util import parse_url
|
|
|
|
from benchmarks.codex.agent.codex_client import CodexClientImpl
|
|
|
|
|
|
@pytest.fixture
|
|
def codex_client_1():
|
|
# TODO wipe data between tests
|
|
return CodexClientImpl(
|
|
parse_url(f"http://{os.environ.get('CODEX_NODE_1', 'localhost')}:8091")
|
|
)
|