mix test.suite (ex_mcp v0.9.0)
View SourceRun specific test suites for ExMCP.
Usage
mix test.suite <suite_name> [options]Available Suites
unit- Fast unit tests only (default)compliance- MCP specification compliance testsintegration- Integration tests with real transportstransport- Transport-specific testssecurity- Security-related testsperformance- Performance and stress testsall- All tests including slow onesci- Tests suitable for CI (excludes manual/flaky tests)
Examples
# Run only unit tests (fast)
mix test.suite unit
# Run compliance tests
mix test.suite compliance
# Run integration tests with coverage
mix test.suite integration --cover
# Run all tests
mix test.suite allOptions
All standard mix test options are supported, including:
--cover- Run with coverage--trace- Run with detailed trace--max-cases- Set max concurrent test cases