We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jddunn/tenets'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pytest_py312.ini•1.04 kB
# pytest configuration for Python 3.12 and earlier
# Use this for running tests until Python 3.13 pytest issues are resolved
[pytest]
minversion = 7.0
python_files = test_*.py *_test.py
python_classes = Test* *Tests
python_functions = test_*
# Minimal options to avoid issues
addopts =
-ra
--strict-markers
--strict-config
--import-mode=importlib
testpaths = tests
pythonpath = .
markers =
unit: Unit tests with mocked dependencies
integration: Integration tests with real components
slow: Tests that take more than 1 second
requires_git: Tests that require a git repository
requires_ml: Tests that require ML dependencies
cli: CLI command tests
smoke: Quick smoke tests for CI
network: Tests that require network access
destructive: Tests that modify files/state
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
console_output_style = progress
# No coverage or timeouts to avoid issues
# No required plugins
log_cli = false
log_cli_level = INFO