fix: PR#151 - Enhance cross-platform support
- Improved error handling and path resolution in run-server.ps1 for better reliability. - Implemented conversation tests for Docker mode compatibility in validation_crossplatform.py. - Updated run-server.ps1 to include detailed help documentation, configuration management, and backup retention for configuration files. - Added Docker path validation tests in validation_crossplatform.py to ensure correct path handling in Docker mode. - Enhanced integration test script run_integration_tests.ps1 with comprehensive documentation and parameter support for output customization.
This commit is contained in:
@@ -1,4 +1,33 @@
|
||||
#!/usr/bin/env pwsh
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Code quality checks script for Zen MCP server on Windows.
|
||||
|
||||
.DESCRIPTION
|
||||
This PowerShell script performs code quality checks for the Zen MCP server project:
|
||||
- Runs static analysis and linting tools on the codebase
|
||||
- Ensures code style compliance and detects potential issues
|
||||
- Can be integrated into CI/CD pipelines or used locally before commits
|
||||
|
||||
.PARAMETER Help
|
||||
Displays help information for using the script.
|
||||
|
||||
.PARAMETER Verbose
|
||||
Enables detailed output during code quality checks.
|
||||
|
||||
.EXAMPLE
|
||||
.\code_quality_checks.ps1
|
||||
Runs all code quality checks on the project.
|
||||
|
||||
.\code_quality_checks.ps1 -Verbose
|
||||
Runs code quality checks with detailed output.
|
||||
|
||||
.NOTES
|
||||
Project Author : BeehiveInnovations
|
||||
Script Author : GiGiDKR (https://github.com/GiGiDKR)
|
||||
Date : 07-05-2025
|
||||
Version : See project documentation
|
||||
References : https://github.com/BeehiveInnovations/zen-mcp-server
|
||||
#>
|
||||
#Requires -Version 5.1
|
||||
[CmdletBinding()]
|
||||
param(
|
||||
|
||||
Reference in New Issue
Block a user