feat: update project structure and docs

This commit is contained in:
2026-04-25 16:26:33 +03:00
parent 9c3b44b561
commit 9772c3c908
42 changed files with 1342 additions and 6 deletions

17
tests/conftest.py Normal file
View 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()