Files

15 lines
313 B
Python
Raw Permalink Normal View History

"""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()