Skip to content

Commit 352065c

Browse files
committed
fix: Fix pytest import order for integration marker
1 parent 1283607 commit 352065c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/server/fastmcp/test_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
single-feature servers across different transports (SSE and StreamableHTTP).
66
"""
77

8-
# Mark all tests in this file as integration tests
9-
pytestmark = pytest.mark.integration
10-
118
import json
129
import multiprocessing
1310
import socket
@@ -48,6 +45,9 @@
4845
ToolListChangedNotification,
4946
)
5047

48+
# Mark all tests in this file as integration tests
49+
pytestmark = [pytest.mark.integration]
50+
5151

5252
class NotificationCollector:
5353
"""Collects notifications from the server for testing."""

0 commit comments

Comments
 (0)