-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig-template.yml
More file actions
35 lines (29 loc) · 989 Bytes
/
config-template.yml
File metadata and controls
35 lines (29 loc) · 989 Bytes
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
# V-Model Extension Configuration
# Copy this to v-model-config.yml and customize
# Directory where V-Model artifacts are stored (relative to specs/{feature}/)
output_dir: "v-model"
# ID prefixes for traceable artifacts
id_prefixes:
requirements: "REQ"
test_cases: "ATP"
scenarios: "SCN"
# Minimum coverage percentage required for validation gate to pass
# Set to 100 for regulated industries, lower for exploratory projects
coverage_threshold: 100
# Number of requirements to process per batch in acceptance generation
# Lower values = better quality per batch, higher values = fewer interactions
batch_size: 5
# Requirement categories to include
# Comment out categories not needed for your project
categories:
functional: true
non_functional: true
interface: true
constraint: true
# Verification methods available
# Used in requirements template for the Verification Method column
verification_methods:
- "Test"
- "Inspection"
- "Analysis"
- "Demonstration"