feat: update project structure and docs
This commit is contained in:
17
tests/conftest.py
Normal file
17
tests/conftest.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Global pytest fixtures and configuration
|
||||
# Shared across all test types
|
||||
|
||||
import sys
|
||||
|
||||
import pytest
|
||||
|
||||
# Disable Python bytecode cache
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
|
||||
@pytest.fixture(scope="session")
|
||||
def event_loop_policy():
|
||||
"""Use default event loop policy for asyncio tests."""
|
||||
import asyncio
|
||||
|
||||
return asyncio.DefaultEventLoopPolicy()
|
||||
Reference in New Issue
Block a user