mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2025-12-19 06:54:18 +01:00
Update CI configuration to support multiple OS environments (#708)
Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
"""Tests for example servers"""
|
||||
|
||||
import sys
|
||||
|
||||
import pytest
|
||||
from pytest_examples import CodeExample, EvalExample, find_examples
|
||||
|
||||
@@ -69,8 +71,15 @@ async def test_desktop(monkeypatch):
|
||||
content = result.contents[0]
|
||||
assert isinstance(content, TextResourceContents)
|
||||
assert isinstance(content.text, str)
|
||||
assert "/fake/path/file1.txt" in content.text
|
||||
assert "/fake/path/file2.txt" in content.text
|
||||
if sys.platform == "win32":
|
||||
file_1 = "/fake/path/file1.txt".replace("/", "\\\\") # might be a bug
|
||||
file_2 = "/fake/path/file2.txt".replace("/", "\\\\") # might be a bug
|
||||
assert file_1 in content.text
|
||||
assert file_2 in content.text
|
||||
# might be a bug, but the test is passing
|
||||
else:
|
||||
assert "/fake/path/file1.txt" in content.text
|
||||
assert "/fake/path/file2.txt" in content.text
|
||||
|
||||
|
||||
@pytest.mark.parametrize("example", find_examples("README.md"), ids=str)
|
||||
|
||||
Reference in New Issue
Block a user