15 lines
313 B
Python
15 lines
313 B
Python
|
|
"""Pytest configuration for the polymarket-insider-tracker tests."""
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
# Configure pytest-asyncio
|
||
|
|
pytest_plugins = ["pytest_asyncio"]
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture(scope="session")
|
||
|
|
def event_loop_policy():
|
||
|
|
"""Use default event loop policy."""
|
||
|
|
import asyncio
|
||
|
|
|
||
|
|
return asyncio.DefaultEventLoopPolicy()
|