1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# CLI Testing Specialist デフォルト設定
# Version: 1.0.0
# このファイルは schema.yaml に準拠した設定値を定義します
# テストモジュール
test_modules:
# レポート形式
report_format: "all"
# タイムアウト設定(秒)
timeouts:
test_execution: 30
docker_container: 300
cli_analysis: 60
# Docker環境設定
docker:
enabled: false
environments:
- alpine
- ubuntu
- debian
base_images:
alpine: "3.18"
ubuntu: "22.04"
debian: "12"
centos: "8"
fedora: "38"
# Shell検出設定
shell_detection:
enabled: true
fallback_shells:
- "/bin/bash"
- "/bin/sh"
test_shells:
- "bash"
- "zsh"
- "sh"
- "dash"
- "ksh"
# 出力設定
output:
base_dir: "./cli-test-output"
structure:
tests: "tests"
reports: "reports"
docker_results: "docker-results"
# ログ設定
logging:
level: "INFO"
enable_colors: true
timestamp_format: "%Y-%m-%d %H:%M:%S"