Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ dev = [
"pytest>=8.4.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"python-dotenv>=1.0.0",
"ruff>=0.13.0",
"ty>=0.0.20",
]
Expand Down
3 changes: 3 additions & 0 deletions tests-integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@

import pytest
import pytest_asyncio
from dotenv import load_dotenv

from mcp_example.api_client import ExampleClient

load_dotenv()


def pytest_configure(config):
"""Check for required environment variables before running tests."""
Expand Down
Loading