diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..4b95e75 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,7 @@ +"""Pytest configuration for click-to-mcp tests.""" + +import os + +# Bypass license/rate-limit check in tests. +# Without this, tests fail when the daily rate limit (50 checks) is exceeded. +os.environ.setdefault("CLICK_TO_MCP_NO_LICENSE", "1")