[pytest] # pytest configuration for blockchain-event-bridge # Test discovery python_files = test_*.py python_classes = Test* python_functions = test_* # Custom markers markers = unit: Unit tests (fast, isolated) integration: Integration tests (may require external services) slow: Slow running tests # Additional options addopts = --verbose --tb=short # Python path for imports pythonpath = . src # Warnings filterwarnings = ignore::UserWarning ignore::DeprecationWarning ignore::PendingDeprecationWarning