Fix lint: move imports before pytestmark in test_streamer.py
Some checks failed
CI/CD Pipeline / test (push) Failing after 1m21s
CI/CD Pipeline / build-and-push (push) Has been skipped

This commit is contained in:
bnair123
2025-12-27 19:09:11 +04:00
parent 02c0995d26
commit 524e6d7498

View File

@@ -12,8 +12,6 @@ from unittest.mock import AsyncMock, Mock, patch
import pytest
pytestmark = pytest.mark.skip(reason="Async WebSocket tests have timing issues - streamer verified manually")
from tradefinder.core.config import Settings
from tradefinder.data.streamer import (
DataStreamer,
@@ -21,6 +19,8 @@ from tradefinder.data.streamer import (
MarkPriceMessage,
)
pytestmark = pytest.mark.skip(reason="Async WebSocket tests have timing issues - streamer verified manually")
@pytest.fixture
def settings() -> Settings: