- Self-contained HTML dashboard with MS Office 365 design - pytest plugin captures inputs, outputs, and errors per test - Unified orchestrator runs pytest + torture tests together - Test files persisted in reports/test_files/ with relative links - GitHub Actions workflow with PR comments and job summaries - Makefile with convenient commands (test, view-dashboard, etc.) - Works offline with embedded JSON data (no CORS issues)
23 lines
727 B
Bash
Executable File
23 lines
727 B
Bash
Executable File
#!/bin/bash
|
|
# Quick script to open the test dashboard in browser
|
|
|
|
DASHBOARD_PATH="/home/rpm/claude/mcp-office-tools/reports/test_dashboard.html"
|
|
|
|
echo "📊 Opening MCP Office Tools Test Dashboard..."
|
|
echo "Dashboard: $DASHBOARD_PATH"
|
|
echo ""
|
|
|
|
# Try different browser commands based on what's available
|
|
if command -v xdg-open &> /dev/null; then
|
|
xdg-open "$DASHBOARD_PATH"
|
|
elif command -v firefox &> /dev/null; then
|
|
firefox "$DASHBOARD_PATH" &
|
|
elif command -v chromium &> /dev/null; then
|
|
chromium "$DASHBOARD_PATH" &
|
|
elif command -v google-chrome &> /dev/null; then
|
|
google-chrome "$DASHBOARD_PATH" &
|
|
else
|
|
echo "⚠️ No browser command found. Please open manually:"
|
|
echo " file://$DASHBOARD_PATH"
|
|
fi
|