Skip to main content
Glama
test-quick.sh749 B
#!/bin/bash # Quick test run - fast tests only, minimal output set -e # Exit on error echo "⚡ OPNsense MCP Server - Quick Test" echo "===================================" echo "" # Check if we're in the project root if [ ! -f "pytest.ini" ]; then echo "❌ Error: Must be run from project root directory" exit 1 fi # Install dependencies quietly python -m pip install -q pytest pytest-asyncio 2>/dev/null || { echo "❌ Failed to install dependencies" exit 1 } # Run tests with minimal output python -m pytest tests/ \ -q \ --tb=line \ -x \ "$@" EXIT_CODE=$? echo "" if [ $EXIT_CODE -eq 0 ]; then echo "✅ Quick test passed!" else echo "❌ Test failed (exit code: $EXIT_CODE)" fi exit $EXIT_CODE

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/floriangrousset/opnsense-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server